mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-26 11:19:14 +02:00
18 lines
352 B
Puppet
18 lines
352 B
Puppet
class icinga2 {
|
|
include icinga_packages
|
|
|
|
service { 'icinga2':
|
|
ensure => running,
|
|
enable => true,
|
|
require => Package['icinga2']
|
|
}
|
|
|
|
package { [
|
|
'icinga2', 'icinga2-doc', 'icinga2-debuginfo' ]:
|
|
ensure => latest,
|
|
require => Class['icinga_packages'],
|
|
}
|
|
|
|
icinga2::feature { [ 'statusdata', 'command', 'compatlog' ]: }
|
|
}
|