|
31 | 31 | apt::source { 'nginx':
|
32 | 32 | location => $stable_repo_source,
|
33 | 33 | repos => 'nginx',
|
34 |
| - key => { 'id' => '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62' }, |
| 34 | + key => { |
| 35 | + 'name' => 'nginx', |
| 36 | + 'source' => 'https://nginx.org/keys/nginx_signing.key', |
| 37 | + }, |
35 | 38 | release => $release,
|
36 | 39 | architecture => $facts['os']['architecture'],
|
37 | 40 | }
|
|
42 | 45 | default => $repo_source,
|
43 | 46 | }
|
44 | 47 | apt::source { 'nginx':
|
45 |
| - location => $mainline_repo_source, |
46 |
| - repos => 'nginx', |
47 |
| - key => { 'id' => '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62' }, |
48 |
| - release => $release, |
49 |
| - architecture => $facts['os']['architecture'], |
| 48 | + location => $mainline_repo_source, |
| 49 | + repos => 'nginx', |
| 50 | + key => { |
| 51 | + 'name' => 'nginx', |
| 52 | + 'source' => 'https://nginx.org/keys/nginx_signing.key', |
| 53 | + }, release => $release, |
| 54 | + architecture => $facts['os']['architecture'], |
50 | 55 | }
|
51 | 56 | }
|
52 | 57 | 'passenger': {
|
|
57 | 62 | apt::source { 'nginx':
|
58 | 63 | location => $passenger_repo_source,
|
59 | 64 | repos => 'main',
|
60 |
| - key => { 'id' => '16378A33A6EF16762922526E561F9B9CAC40B2F7' }, |
| 65 | + key => { |
| 66 | + 'name' => 'phusionpassenger', |
| 67 | + 'source' => 'https://oss-binaries.phusionpassenger.com/auto-software-signing-gpg-key.txt', |
| 68 | + }, |
61 | 69 | architecture => $facts['os']['architecture'],
|
62 | 70 | }
|
63 |
| - |
64 | 71 | package { $passenger_package_name:
|
65 | 72 | ensure => $passenger_package_ensure,
|
66 | 73 | require => Exec['apt_update'],
|
|
0 commit comments