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