e846110b8d
Signed-off-by: Nick Chappell <nick@intronic.org>
12 líneas
308 B
Puppet
12 líneas
308 B
Puppet
# Enable Features for Icinga 2
|
|
class icinga2::server::features (
|
|
$enabled_features = ['checker', 'notification', 'maillog'],
|
|
) {
|
|
|
|
# Do some checking
|
|
validate_array($enabled_features)
|
|
|
|
# Pass the features arry to the define to loop though
|
|
icinga2::server::features::enable { $enabled_features: }
|
|
|
|
}
|