module-icinga2/manifests/server/features.pp
Steven Bambling 66d9d95ee2 re pointing default param's
Signed-off-by: Nick Chappell <nick@intronic.org>
2014-10-09 23:12:20 -07:00

12 lines
311 B
Puppet

# Enable Features for Icinga 2
class icinga2::server::features (
$enabled_features = $icinga2::server::server_enabled_features,
) {
# Do some checking
validate_array($enabled_features)
# Pass the features arry to the define to loop though
icinga2::server::features::enable { $enabled_features: }
}