Adds apt::{conf,backports} and variable style.
[puppet-modules/puppetlabs-apt.git] / manifests / debian / unstable.pp
1 # unstable.pp
2
3 class apt::debian::unstable {
4   include apt
5
6   # deb http://debian.mirror.iweb.ca/debian/ unstable main contrib non-free
7   # deb-src http://debian.mirror.iweb.ca/debian/ unstable main contrib non-free
8   # Key: 55BE302B  Server: subkeys.pgp.net
9   # debian-keyring
10   # debian-archive-keyring
11
12   apt::source { 'debian_unstable':
13     location          => 'http://debian.mirror.iweb.ca/debian/',
14     release           => 'unstable',
15     repos             => 'main contrib non-free',
16     required_packages => 'debian-keyring debian-archive-keyring',
17     key               => '55BE302B',
18     key_server        => 'subkeys.pgp.net',
19     pin               => '-10',
20   }
21 }