2010-04-27 22:38:28 +02:00
|
|
|
# testing.pp
|
|
|
|
|
|
|
|
class apt::debian::testing {
|
2012-04-11 23:54:13 +02:00
|
|
|
include apt
|
2010-04-27 22:38:28 +02:00
|
|
|
|
2011-05-30 19:24:06 +02:00
|
|
|
# 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
|
|
|
|
# debian-keyring
|
|
|
|
# debian-archive-keyring
|
|
|
|
|
2012-03-21 14:20:13 +01:00
|
|
|
apt::source { 'debian_testing':
|
|
|
|
location => 'http://debian.mirror.iweb.ca/debian/',
|
|
|
|
release => 'testing',
|
|
|
|
repos => 'main contrib non-free',
|
|
|
|
required_packages => 'debian-keyring debian-archive-keyring',
|
|
|
|
key => '55BE302B',
|
|
|
|
key_server => 'subkeys.pgp.net',
|
|
|
|
pin => '-10',
|
2011-05-30 19:24:06 +02:00
|
|
|
}
|
2010-04-27 22:38:28 +02:00
|
|
|
}
|