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