diff --git a/manifests/package/debian.pp b/manifests/package/debian.pp index 8a8022669..458788131 100644 --- a/manifests/package/debian.pp +++ b/manifests/package/debian.pp @@ -31,7 +31,10 @@ apt::source { 'nginx': location => $stable_repo_source, repos => 'nginx', - key => { 'id' => '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62' }, + key => { + 'name' => 'nginx', + 'source' => 'https://nginx.org/keys/nginx_signing.key', + }, release => $release, architecture => $facts['os']['architecture'], } @@ -42,11 +45,13 @@ default => $repo_source, } apt::source { 'nginx': - location => $mainline_repo_source, - repos => 'nginx', - key => { 'id' => '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62' }, - release => $release, - architecture => $facts['os']['architecture'], + location => $mainline_repo_source, + repos => 'nginx', + key => { + 'name' => 'nginx', + 'source' => 'https://nginx.org/keys/nginx_signing.key', + }, release => $release, + architecture => $facts['os']['architecture'], } } 'passenger': { @@ -57,10 +62,12 @@ apt::source { 'nginx': location => $passenger_repo_source, repos => 'main', - key => { 'id' => '16378A33A6EF16762922526E561F9B9CAC40B2F7' }, + key => { + 'name' => 'phusionpassenger', + 'source' => 'https://oss-binaries.phusionpassenger.com/auto-software-signing-gpg-key.txt', + }, architecture => $facts['os']['architecture'], } - package { $passenger_package_name: ensure => $passenger_package_ensure, require => Exec['apt_update'], diff --git a/spec/classes/nginx_spec.rb b/spec/classes/nginx_spec.rb index 016dbdf45..2a3b1dfae 100644 --- a/spec/classes/nginx_spec.rb +++ b/spec/classes/nginx_spec.rb @@ -160,7 +160,7 @@ is_expected.to contain_apt__source('nginx').with( 'location' => "https://nginx.org/packages/#{facts[:os]['name'].downcase}", 'repos' => 'nginx', - 'key' => { 'id' => '573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62' } + 'key' => { 'source' => 'https://nginx.org/keys/nginx_signing.key' } ) end end @@ -195,7 +195,7 @@ is_expected.to contain_apt__source('nginx').with( 'location' => 'https://oss-binaries.phusionpassenger.com/apt/passenger', 'repos' => 'main', - 'key' => { 'id' => '16378A33A6EF16762922526E561F9B9CAC40B2F7' } + 'key' => { 'source' => 'https://oss-binaries.phusionpassenger.com/auto-software-signing-gpg-key.txt' } ) end end