module-icinga2/manifests/server/service.pp
Steven Bambling 664d918edf making the server watch for enabled features/modules
Signed-off-by: Nick Chappell <nick@intronic.org>
2014-10-09 23:12:19 -07:00

24 lines
524 B
Puppet

# == Class: icinga2::server::service
#
# This class mangages the daemons of the server components for the Icinga 2 monitoring system.
#
# === Parameters
#
# Coming soon...
#
# === Examples
#
# Coming soon...
#
class icinga2::server::service inherits icinga2::server {
include icinga2::server
#Service resource for the Icinga 2 daemon:
service {$icinga2::params::icinga2_server_service_name:
ensure => running,
subscribe => [ Class['icinga2::server::config'], Class['icinga2::server::features'] ],
}
}