2014-07-10 07:20:01 +02:00
|
|
|
# == Defined type: icinga2::object::host
|
|
|
|
#
|
|
|
|
# This defined type
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
#
|
|
|
|
# See the inline comments.
|
|
|
|
#
|
|
|
|
|
|
|
|
define icinga2::objects::host (
|
|
|
|
$ipv4_address = $ipaddress_eth0,
|
|
|
|
$ipv6_address = $ipaddress_eth0,
|
|
|
|
$object_hostname = $name,
|
|
|
|
$display_name = $fqdn,
|
|
|
|
$template_to_import = 'generic-host',
|
|
|
|
$target_dir = '/etc/icinga2/conf.d',
|
|
|
|
$target_file_name = "${fqdn}.conf",
|
2014-07-11 04:44:49 +02:00
|
|
|
$target_file_owner = 'root',
|
|
|
|
$target_file_group = 'root',
|
|
|
|
$target_file_mode = '644'
|
2014-07-10 07:20:01 +02:00
|
|
|
) {
|
|
|
|
|
|
|
|
file {"${target_dir}/${target_file_name}":
|
|
|
|
ensure => file,
|
2014-07-11 04:44:49 +02:00
|
|
|
owner => $target_file_owner,
|
|
|
|
group => $target_file_group,
|
|
|
|
mode => $target_file_mode,
|
2014-07-10 07:20:01 +02:00
|
|
|
content => template('icinga2/object_host.conf.erb'),
|
|
|
|
notify => Service['icinga2'],
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|