Browse Source

Update out-of-date Debian signing key in remaining files.

Martin Konrad 10 years ago
parent
commit
3aa293a53f

+ 1 - 1
README.md

@@ -142,7 +142,7 @@ Adds an apt source to `/etc/apt/sources.list.d/`.
       release           => 'unstable',
       repos             => 'main contrib non-free',
       required_packages => 'debian-keyring debian-archive-keyring',
-      key               => '55BE302B',
+      key               => '46925553',
       key_server        => 'subkeys.pgp.net',
       pin               => '-10',
       include_src       => true

+ 2 - 2
manifests/debian/testing.pp

@@ -5,7 +5,7 @@ class apt::debian::testing {
 
   # deb http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
   # deb-src http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
-  # Key: 55BE302B  Server: subkeys.pgp.net
+  # Key: 46925553  Server: subkeys.pgp.net
   # debian-keyring
   # debian-archive-keyring
 
@@ -14,7 +14,7 @@ class apt::debian::testing {
     release           => 'testing',
     repos             => 'main contrib non-free',
     required_packages => 'debian-keyring debian-archive-keyring',
-    key               => '55BE302B',
+    key               => '46925553',
     key_server        => 'subkeys.pgp.net',
     pin               => '-10',
   }

+ 2 - 2
manifests/debian/unstable.pp

@@ -5,7 +5,7 @@ class apt::debian::unstable {
 
   # deb http://debian.mirror.iweb.ca/debian/ unstable main contrib non-free
   # deb-src http://debian.mirror.iweb.ca/debian/ unstable main contrib non-free
-  # Key: 55BE302B  Server: subkeys.pgp.net
+  # Key: 46925553  Server: subkeys.pgp.net
   # debian-keyring
   # debian-archive-keyring
 
@@ -14,7 +14,7 @@ class apt::debian::unstable {
     release           => 'unstable',
     repos             => 'main contrib non-free',
     required_packages => 'debian-keyring debian-archive-keyring',
-    key               => '55BE302B',
+    key               => '46925553',
     key_server        => 'subkeys.pgp.net',
     pin               => '-10',
   }

+ 2 - 2
spec/classes/backports_spec.rb

@@ -34,7 +34,7 @@ describe 'apt::backports', :type => :class do
         'location'   => 'http://backports.debian.org/debian-backports',
         'release'    => 'squeeze-backports',
         'repos'      => 'main contrib non-free',
-        'key'        => '55BE302B',
+        'key'        => '46925553',
         'key_server' => 'pgp.mit.edu',
         'pin'        => '200',
       })
@@ -62,7 +62,7 @@ describe 'apt::backports', :type => :class do
         'location'   => location,
         'release'    => 'squeeze-backports',
         'repos'      => 'main contrib non-free',
-        'key'        => '55BE302B',
+        'key'        => '46925553',
         'key_server' => 'pgp.mit.edu',
         'pin'        => '200',
       })

+ 1 - 1
spec/classes/debian_testing_spec.rb

@@ -6,7 +6,7 @@ describe 'apt::debian::testing', :type => :class do
       "release"             => "testing",
       "repos"               => "main contrib non-free",
       "required_packages"   => "debian-keyring debian-archive-keyring",
-      "key"                 => "55BE302B",
+      "key"                 => "46925553",
       "key_server"          => "subkeys.pgp.net",
       "pin"                 => "-10"
     })

+ 1 - 1
spec/classes/debian_unstable_spec.rb

@@ -6,7 +6,7 @@ describe 'apt::debian::unstable', :type => :class do
       "release"           => "unstable",
       "repos"             => "main contrib non-free",
       "required_packages" => "debian-keyring debian-archive-keyring",
-      "key"               => "55BE302B",
+      "key"               => "46925553",
       "key_server"        => "subkeys.pgp.net",
       "pin"               => "-10"
     })

+ 2 - 2
tests/source.pp

@@ -15,7 +15,7 @@ apt::source { 'debian_testing':
   location   => 'http://debian.mirror.iweb.ca/debian/',
   release    => 'testing',
   repos      => 'main contrib non-free',
-  key        => '55BE302B',
+  key        => '46925553',
   key_server => 'subkeys.pgp.net',
   pin        => '-10',
 }
@@ -23,7 +23,7 @@ apt::source { 'debian_unstable':
   location   => 'http://debian.mirror.iweb.ca/debian/',
   release    => 'unstable',
   repos      => 'main contrib non-free',
-  key        => '55BE302B',
+  key        => '46925553',
   key_server => 'subkeys.pgp.net',
   pin        => '-10',
 }