Puppet Class: rsyslog::config::actions

Defined in:
manifests/config/actions.pp

Overview



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

class rsyslog::config::actions {
  $rsyslog::config::actions.each |$action, $config| {
    rsyslog::component::action { $action:
      * => {
        'priority' => $rsyslog::action_priority,
        'target'   => $rsyslog::target_file,
        'confdir'  => $rsyslog::confdir,
      } + $config,
    }
  }
}