2012-03-20 22:52:43 +01:00
|
|
|
# Declare the apt class to manage /etc/apt/sources.list and /etc/sources.list.d
|
2011-05-30 19:23:18 +02:00
|
|
|
class { 'apt': }
|
2012-03-20 22:52:43 +01:00
|
|
|
|
|
|
|
# Install the puppetlabs apt source
|
2012-03-20 23:52:44 +01:00
|
|
|
# Release is automatically obtained from lsbdistcodename fact if available.
|
2012-03-20 22:52:43 +01:00
|
|
|
apt::source { 'puppetlabs':
|
|
|
|
location => 'http://apt.puppetlabs.com',
|
|
|
|
repos => 'main',
|
|
|
|
key => '4BD6EC30',
|
|
|
|
key_server => 'pgp.mit.edu',
|
2011-05-30 19:23:18 +02:00
|
|
|
}
|
2012-02-24 00:44:26 +01:00
|
|
|
|
|
|
|
# test two sources with the same key
|
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',
|
2014-02-18 22:57:01 +01:00
|
|
|
key => '46925553',
|
2012-03-21 14:20:13 +01:00
|
|
|
key_server => 'subkeys.pgp.net',
|
|
|
|
pin => '-10',
|
2012-02-24 00:44:26 +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',
|
2014-02-18 22:57:01 +01:00
|
|
|
key => '46925553',
|
2012-03-21 14:20:13 +01:00
|
|
|
key_server => 'subkeys.pgp.net',
|
|
|
|
pin => '-10',
|
2012-02-24 00:44:26 +01:00
|
|
|
}
|