Puppet Class: rsyslog::config::custom
- Defined in:
- manifests/config/custom.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 |
# File 'manifests/config/custom.pp', line 1
class rsyslog::config::custom {
$rsyslog::config::custom_config.each |$conf_name, $config| {
rsyslog::component::custom_config { $conf_name:
* => {
'priority' => $rsyslog::custom_priority,
'target' => $rsyslog::target_file,
'confdir' => $rsyslog::confdir,
} + $config,
}
}
}
|