77d2b0dd05
of 2 space indentation.
21 lines
592 B
Puppet
21 lines
592 B
Puppet
# testing.pp
|
|
|
|
class apt::debian::testing {
|
|
|
|
# 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
|
|
|
|
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"
|
|
}
|
|
|
|
}
|