a00eecec25
refs#7716 : https://dev.icinga.org/issues/7716
61 lines
2 KiB
Puppet
61 lines
2 KiB
Puppet
# == Defined type: icinga2::object::apply_dependency
|
|
#
|
|
# This is a defined type for Icinga 2 apply dependency objects.
|
|
# See the following Icinga 2 doc page for more info:
|
|
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/configuring-icinga2#objecttype-dependency
|
|
#
|
|
# === Parameters
|
|
#
|
|
# See the inline comments.
|
|
#
|
|
|
|
define icinga2::object::apply_dependency (
|
|
$object_name = $name,
|
|
$display_name = $name,
|
|
$object_type = 'Host',
|
|
$parent_host_name = undef,
|
|
$parent_service_name = undef,
|
|
$child_host_name = undef,
|
|
$child_service_name = undef,
|
|
$disable_checks = undef,
|
|
$disable_notifications = undef,
|
|
$period = undef,
|
|
$states = [],
|
|
$assign_where = undef,
|
|
$ignore_where = undef,
|
|
$target_dir = '/etc/icinga2/conf.d',
|
|
$target_file_name = "${name}.conf",
|
|
$target_file_ensure = file,
|
|
$target_file_owner = 'root',
|
|
$target_file_group = 'root',
|
|
$target_file_mode = '0644') {
|
|
# Do some validation of the class' parameters:
|
|
validate_string($object_name)
|
|
validate_string($display_name)
|
|
validate_string($host_name)
|
|
validate_string($parent_host_name)
|
|
validate_string($child_host_name)
|
|
validate_string($child_service_name)
|
|
validate_string($parent_service_name)
|
|
# validate_bool($disable_checks)
|
|
# validate_bool($disable_notifications)
|
|
validate_string($period)
|
|
validate_array($states)
|
|
validate_string($target_dir)
|
|
validate_string($target_file_name)
|
|
validate_string($target_file_owner)
|
|
validate_string($target_file_group)
|
|
validate_string($target_file_mode)
|
|
|
|
validate_re($object_type, ['^Host', '^Service'])
|
|
|
|
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_apply_dependency.conf.erb'),
|
|
notify => Service['icinga2'],
|
|
}
|
|
|
|
}
|