2014-11-13 19:06:47 +01:00
|
|
|
# == Defined type: icinga2::object::livestatuslistener
|
|
|
|
#
|
|
|
|
# This is a defined type for Icinga 2 apply objects that create Livestatus Listener
|
|
|
|
# See the following Icinga 2 doc page for more info:
|
|
|
|
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/configuring-icinga2#objecttype-livestatuslistener
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
#
|
|
|
|
# See the inline comments.
|
|
|
|
#
|
|
|
|
|
|
|
|
define icinga2::object::livestatuslistener (
|
2014-12-02 06:38:42 +01:00
|
|
|
$object_livestatuslistenername = $name,
|
2014-11-13 19:06:47 +01:00
|
|
|
$socket_type = undef,
|
|
|
|
$bind_host = undef,
|
|
|
|
$bind_port = undef,
|
|
|
|
$socket_path = undef,
|
|
|
|
$compat_log_path = undef,
|
2014-11-17 12:14:41 +01:00
|
|
|
$target_dir = '/etc/icinga2/objects/livestatuslisteners',
|
2014-11-13 19:06:47 +01:00
|
|
|
$target_file_name = "${name}.conf",
|
2014-11-19 06:55:48 +01:00
|
|
|
$target_file_ensure = file,
|
2014-11-13 19:06:47 +01:00
|
|
|
$target_file_owner = 'root',
|
|
|
|
$target_file_group = 'root',
|
2014-12-02 06:38:42 +01:00
|
|
|
$target_file_mode = '0644',
|
|
|
|
$refresh_icinga2_service = true
|
2014-11-13 19:06:47 +01:00
|
|
|
) {
|
|
|
|
|
|
|
|
#Do some validation of the class' parameters:
|
2014-11-18 06:29:20 +01:00
|
|
|
if $object_livestatuslistenername {
|
|
|
|
validate_string($object_livestatuslistenername)
|
2014-11-13 19:06:47 +01:00
|
|
|
}
|
|
|
|
if $socket_type {
|
|
|
|
validate_string($socket_type)
|
|
|
|
}
|
|
|
|
if $bind_host {
|
|
|
|
validate_string($bind_host)
|
|
|
|
}
|
|
|
|
if $bind_port {
|
|
|
|
validate_string($bind_port)
|
|
|
|
}
|
|
|
|
if $socket_path {
|
|
|
|
validate_string($socket_path)
|
|
|
|
}
|
|
|
|
if $compat_log_path {
|
|
|
|
validate_string($compat_log_path)
|
|
|
|
}
|
|
|
|
validate_string($target_dir)
|
|
|
|
validate_string($target_file_name)
|
|
|
|
validate_string($target_file_owner)
|
|
|
|
validate_string($target_file_group)
|
|
|
|
validate_re($target_file_mode, '^\d{4}$')
|
2014-12-02 06:38:42 +01:00
|
|
|
validate_bool($refresh_icinga2_service)
|
2014-11-13 19:06:47 +01:00
|
|
|
|
2014-12-02 06:38:42 +01:00
|
|
|
#If the refresh_icinga2_service parameter is set to true...
|
|
|
|
if $refresh_icinga2_service == true {
|
2014-11-13 19:06:47 +01:00
|
|
|
|
2014-12-02 06:38:42 +01:00
|
|
|
file { "${target_dir}/${target_file_name}":
|
|
|
|
ensure => $target_file_ensure,
|
|
|
|
owner => $target_file_owner,
|
|
|
|
group => $target_file_group,
|
|
|
|
mode => $target_file_mode,
|
|
|
|
content => template('icinga2/object_livestatuslistener.conf.erb'),
|
|
|
|
#...notify the Icinga 2 daemon so it can restart and pick up changes made to this config file...
|
|
|
|
notify => Service['icinga2'],
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#...otherwise, use the same file resource but without a notify => parameter:
|
|
|
|
else {
|
|
|
|
|
|
|
|
file { "${target_dir}/${target_file_name}":
|
|
|
|
ensure => $target_file_ensure,
|
|
|
|
owner => $target_file_owner,
|
|
|
|
group => $target_file_group,
|
|
|
|
mode => $target_file_mode,
|
|
|
|
content => template('icinga2/object_livestatuslistener.conf.erb'),
|
|
|
|
}
|
|
|
|
|
2014-11-13 19:06:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|