module-icinga2/manifests/server/service.pp

25 lines
484 B
ObjectPascal
Raw Normal View History

# == Class: icinga2::server::service
#
# This class mangages the daemons of the server components for the Icinga 2 monitoring system.
#
# === Parameters
#
# Coming soon...
#
# === Examples
2014-09-14 04:46:24 +02:00
#
# Coming soon...
2014-09-14 04:46:24 +02:00
#
class icinga2::server::service inherits icinga2::server {
2014-09-14 04:46:24 +02:00
include icinga2::server
#Service resource for the Icinga 2 daemon:
service {$icinga2::params::icinga2_server_service_name:
ensure => running,
subscribe => Class['icinga2::server::config'],
}
2014-09-14 04:46:24 +02:00
}