Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
21
modules/apt/manifests/debian/testing.pp
Normal file
21
modules/apt/manifests/debian/testing.pp
Normal file
|
@ -0,0 +1,21 @@
|
|||
# testing.pp
|
||||
|
||||
class apt::debian::testing {
|
||||
include apt
|
||||
|
||||
# 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: 46925553 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 => '46925553',
|
||||
key_server => 'subkeys.pgp.net',
|
||||
pin => '-10',
|
||||
}
|
||||
}
|
21
modules/apt/manifests/debian/unstable.pp
Normal file
21
modules/apt/manifests/debian/unstable.pp
Normal file
|
@ -0,0 +1,21 @@
|
|||
# unstable.pp
|
||||
|
||||
class apt::debian::unstable {
|
||||
include apt
|
||||
|
||||
# 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: 46925553 Server: subkeys.pgp.net
|
||||
# debian-keyring
|
||||
# debian-archive-keyring
|
||||
|
||||
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 => '46925553',
|
||||
key_server => 'subkeys.pgp.net',
|
||||
pin => '-10',
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue