Puppet Class: auditd::config

Inherits:
auditd
Defined in:
manifests/config.pp

Overview



1
2
3
4
5
6
7
8
9
10
# File 'manifests/config.pp', line 1

class auditd::config inherits auditd {

  file { $auditd::conf:
    ensure  => file,
    owner   => 0,
    group   => 0,
    mode    => '0640',
    content => epp('auditd/auditd_conf.epp'),
  }
}