aboutsummaryrefslogtreecommitdiff
path: root/manifests/apticron.pp
blob: 9c94f9c91ea01f647ad9fa6ca13d6f323dcc543d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class apt::apticron(
  $ensure_version = 'installed',
  $config = "apt/${::operatingsystem}/apticron_${::debian_codename}.erb",
  $email = 'root',
  $diff_only = '1',
  $listchanges_profile = 'apticron',
  $system = false,
  $ipaddressnum = false,
  $ipaddresses = false,
  $notifyholds = '0',
  $notifynew = '0',
  $customsubject = ''
) {

  package { 'apticron': ensure => $ensure_version }

  file { '/etc/apticron/apticron.conf':
    content => template($apt::apticron::config),
    owner   => root,
    group   => root,
    mode    => '0644',
    require => Package['apticron'];
  }
}