9bc44f6b26
Signed-off-by: Nick Chappell <nick@intronic.org>
46 خطوط
1.3 KiB
Puppet
46 خطوط
1.3 KiB
Puppet
# == Defined type: icinga2::object::hostgroup
|
|
#
|
|
# This is a defined type for Icinga 2 hostgroup objects.
|
|
# See the following Icinga 2 doc page for more info:
|
|
# http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/configuring-icinga2#objecttype-hostgroup
|
|
#
|
|
# === Parameters
|
|
#
|
|
# See the inline comments.
|
|
#
|
|
|
|
define icinga2::object::hostgroup (
|
|
$object_hostgroup_name = $name,
|
|
$display_name = $name,
|
|
$template_to_import = undef,
|
|
$groups = [],
|
|
$target_dir = '/etc/icinga2/conf.d',
|
|
$target_file_name = "${name}.conf",
|
|
$target_file_owner = 'root',
|
|
$target_file_group = 'root',
|
|
$target_file_mode = '0644',
|
|
$assign_where = undef,
|
|
$ignore_where = undef
|
|
) {
|
|
|
|
#Do some validation of the class' parameters:
|
|
validate_string($object_hostgroup_name)
|
|
validate_string($template_to_import)
|
|
validate_string($display_name)
|
|
validate_array($groups)
|
|
validate_string($target_dir)
|
|
validate_string($target_file_name)
|
|
validate_string($target_file_owner)
|
|
validate_string($target_file_group)
|
|
validate_string($target_file_mode)
|
|
|
|
file {"${target_dir}/${target_file_name}":
|
|
ensure => file,
|
|
owner => $target_file_owner,
|
|
group => $target_file_group,
|
|
mode => $target_file_mode,
|
|
content => template('icinga2/object_hostgroup.conf.erb'),
|
|
notify => Service['icinga2'],
|
|
}
|
|
|
|
}
|