summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/apt/examples/debian_testing.pp
blob: 3ed98f21f12e9d225dca4e06d008707e45f45a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package { 'debian-keyring':
  ensure => present
}

package { 'debian-archive-keyring':
  ensure => present
}

apt::source { 'debian_testing':
  location => 'http://debian.mirror.iweb.ca/debian/',
  release  => 'testing',
  repos    => 'main contrib non-free',
  pin      => '-10',
  key      => {
    id     => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
    server => 'subkeys.pgp.net',
  },
}