summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: a353b9ea9e94c5607d429812c5f82316ce5b1bbd (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
27
28
29
30
31
32
33
34
class logcheck (
  String $reportlevel = 'server'
) {
  package {
    ['logcheck','logcheck-database']:
      ensure        => installed,
    ;
  }
  file {
    '/etc/logcheck/logcheck.conf':
      ensure  => present,
      content => template('logcheck/etc/logcheck/logcheck.conf.erb'),
    ;
    '/etc/logcheck/ignore.d.server/':
      ensure  => directory,
      source  => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.server/',
      recurse => remote,
      replace => true,
    ;
    '/etc/logcheck/ignore.d.workstation/':
      ensure  => directory,
      source  => 'puppet:///modules/logcheck/etc/logcheck/ignore.d.workstation/',
      recurse => remote,
      replace => true,
    ;
    '/etc/logcheck/violations.ignore.d/':
      ensure  => directory,
      source  => 'puppet:///modules/logcheck/etc/logcheck/violations.ignore.d/',
      recurse => remote,
      replace => true,
    ;
  }
  File <| tag == 'logcheck-logfile' |>
}