11 lines
395 B
ObjectPascal
11 lines
395 B
ObjectPascal
|
# Disable Icinga 2 Features/Modules
|
||
|
define icinga2::server::features::disable () {
|
||
|
exec { "icinga2-disable-feature ${name}":
|
||
|
user => 'root',
|
||
|
path => '/usr/bin:/usr/sbin:/bin/:/sbin',
|
||
|
command => "/usr/sbin/icinga2-disable-feature ${name}",
|
||
|
unless => "[ ! -f /etc/icinga2/features-enabled/${name}.conf ]",
|
||
|
require => Class['icinga2::server::install::packages'],
|
||
|
}
|
||
|
}
|