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