3a82b4f7fd9266447333ba6f2199e3c93b7bc9f2
[puppet-modules/puppetlabs-apt.git] / manifests / debian / testing.pp
1 # testing.pp
2
3 class apt::debian::testing {
4   include apt
5
6   # deb http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
7   # deb-src http://debian.mirror.iweb.ca/debian/ testing main contrib non-free
8   # Key: 46925553  Server: subkeys.pgp.net
9   # debian-keyring
10   # debian-archive-keyring
11
12   apt::source { 'debian_testing':
13     location          => 'http://debian.mirror.iweb.ca/debian/',
14     release           => 'testing',
15     repos             => 'main contrib non-free',
16     required_packages => 'debian-keyring debian-archive-keyring',
17     key               => '46925553',
18     key_server        => 'subkeys.pgp.net',
19     pin               => '-10',
20   }
21 }