Skip to content

Commit

Permalink
Merge pull request #466 from paroga/master
Browse files Browse the repository at this point in the history
Fix gpg key checking warings after f588f26
  • Loading branch information
Morgan Haskel committed Mar 16, 2015
2 parents be54e18 + 61a4fb6 commit 396e11a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class { 'apt':
release => 'unstable',
repos => 'main contrib non-free',
required_packages => 'debian-keyring debian-archive-keyring',
key => '8B48AD6246925553',
key => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
key_server => 'subkeys.pgp.net',
pin => '-10',
include_src => true,
Expand Down
4 changes: 2 additions & 2 deletions manifests/backports.pp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
}

$key = $distid ? {
'debian' => '46925553',
'ubuntu' => '437D05B5',
'debian' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
'ubuntu' => '630239CC130E1A7FD81A27B140976EAF437D05B5',
}
$repos = $distid ? {
'debian' => 'main contrib non-free',
Expand Down
2 changes: 1 addition & 1 deletion manifests/debian/testing.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
release => 'testing',
repos => 'main contrib non-free',
required_packages => 'debian-keyring debian-archive-keyring',
key => '46925553',
key => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
key_server => 'subkeys.pgp.net',
pin => '-10',
}
Expand Down
2 changes: 1 addition & 1 deletion manifests/debian/unstable.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
release => 'unstable',
repos => 'main contrib non-free',
required_packages => 'debian-keyring debian-archive-keyring',
key => '46925553',
key => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
key_server => 'subkeys.pgp.net',
pin => '-10',
}
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/apt_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class { 'apt':
'ensure' => present,
'location' => 'http://apt.puppetlabs.com',
'repos' => 'main',
'key' => '4BD6EC30',
'key' => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30',
'key_server' => 'pgp.mit.edu',
}
},
Expand Down
4 changes: 2 additions & 2 deletions spec/classes/apt_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@
'release' => 'unstable',
'repos' => 'main contrib non-free',
'required_packages' => 'debian-keyring debian-archive-keyring',
'key' => '55BE302B',
'key' => '150C8614919D8446E01E83AF9AA38DCD55BE302B',
'key_server' => 'subkeys.pgp.net',
'pin' => '-10',
'include_src' => true
},
'puppetlabs' => {
'location' => 'http://apt.puppetlabs.com',
'repos' => 'main',
'key' => '4BD6EC30',
'key' => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30',
'key_server' => 'pgp.mit.edu',
}
} } }
Expand Down
12 changes: 6 additions & 6 deletions spec/classes/backports_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'location' => 'http://old-releases.ubuntu.com/ubuntu',
'release' => 'karmic-backports',
'repos' => 'main universe multiverse restricted',
'key' => '437D05B5',
'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5',
'key_server' => 'pgp.mit.edu',
})
}
Expand Down Expand Up @@ -51,7 +51,7 @@
'location' => 'http://old-releases.ubuntu.com/ubuntu',
'release' => 'karmic-backports',
'repos' => 'main universe multiverse restricted',
'key' => '437D05B5',
'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5',
'key_server' => 'pgp.mit.edu',
})
}
Expand All @@ -77,7 +77,7 @@
'location' => 'http://backports.debian.org/debian-backports',
'release' => 'squeeze-backports',
'repos' => 'main contrib non-free',
'key' => '46925553',
'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
'key_server' => 'pgp.mit.edu',
})
}
Expand All @@ -103,7 +103,7 @@
'location' => 'http://ftp.debian.org/debian/',
'release' => 'wheezy-backports',
'repos' => 'main contrib non-free',
'key' => '46925553',
'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
'key_server' => 'pgp.mit.edu',
})
}
Expand All @@ -129,7 +129,7 @@
'location' => 'http://us.archive.ubuntu.com/ubuntu',
'release' => 'trusty-backports',
'repos' => 'main universe multiverse restricted',
'key' => '437D05B5',
'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5',
'key_server' => 'pgp.mit.edu',
})
}
Expand Down Expand Up @@ -163,7 +163,7 @@
'location' => location,
'release' => 'squeeze-backports',
'repos' => 'main contrib non-free',
'key' => '46925553',
'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
'key_server' => 'pgp.mit.edu',
})
}
Expand Down
4 changes: 2 additions & 2 deletions tests/source.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
location => 'http://debian.mirror.iweb.ca/debian/',
release => 'testing',
repos => 'main contrib non-free',
key => '46925553',
key => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
key_server => 'subkeys.pgp.net',
pin => '-10',
}
apt::source { 'debian_unstable':
location => 'http://debian.mirror.iweb.ca/debian/',
release => 'unstable',
repos => 'main contrib non-free',
key => '46925553',
key => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
key_server => 'subkeys.pgp.net',
pin => '-10',
}

0 comments on commit 396e11a

Please sign in to comment.