summaryrefslogtreecommitdiff
path: root/manifests/apticron.pp
blob: 73ada707f1ffb9c5c67d7f65aa5a48e25fe67d6e (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
25
26
class apt::apticron(
  $ensure_version = 'installed',
  $config = "apt/${::operatingsystem}/apticron.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'];
  }
}