f4ae2a4232
Signed-off-by: Nick Chappell <nick@intronic.org>
10 lines
388 B
Puppet
10 lines
388 B
Puppet
# Enable Icinga 2 Features/Modules
|
|
define icinga2::server::feature::enable () {
|
|
exec { "icinga2-enable-feature ${name}":
|
|
user => 'root',
|
|
path => '/usr/bin:/usr/sbin:/bin/:/sbin',
|
|
command => "/usr/sbin/icinga2-enable-feature ${name}",
|
|
unless => "[ -f /etc/icinga2/features-enabled/${name}.conf ]",
|
|
require => Class['icinga2::server::install::packages'],
|
|
}
|
|
}
|