Puppet Class: auditd::audisp::syslog

Defined in:
manifests/audisp/syslog.pp

Overview

Parameters:

  • args (Any) (defaults to: 'LOG_INFO')


1
2
3
4
5
6
7
8
9
10
11
12
13
# File 'manifests/audisp/syslog.pp', line 1

class auditd::audisp::syslog (
  $args = 'LOG_INFO',

) {

  auditd::audisp::plugin { 'syslog':
    path    => 'builtin_syslog',
    type    => 'builtin',
    args    => $args,
    require => Package['auditd'],
  }

}