2014-06-28 06:40:02 +02:00
|
|
|
# == 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
|
|
|
#
|
2014-06-28 06:40:02 +02:00
|
|
|
# Coming soon...
|
2014-09-14 04:46:24 +02:00
|
|
|
#
|
2014-06-28 06:40:02 +02:00
|
|
|
|
|
|
|
class icinga2::server::service inherits icinga2::server {
|
2014-09-14 04:46:24 +02:00
|
|
|
|
2014-07-05 22:51:36 +02:00
|
|
|
include icinga2::server
|
2014-07-06 00:56:55 +02:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
}
|