File: test.pp

package info (click to toggle)
puppet-module-puppetlabs-apt 9.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: ruby: 438; sh: 31; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class { 'apt':
  update => {
    frequency => 'daily',
  },
}

apt::source { 'debian_unstable':
  location => 'http://deb.debian.org/debian/',
  release  => 'unstable',
  repos    => 'main contrib non-free',
  pin      => '-10',
  include  => {
    'src' => true,
    'deb' => true,
  },
}