module-icinga2/manifests/objects/host.pp
Nick Chappell 0437d4d69a Added a basic defined type for Icinga 2 host objects; added an accompanying template.
This is really basic now. I'll add more parameters to it later on.
2014-07-09 22:20:08 -07:00

29 lines
No EOL
624 B
Puppet

# == 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",
) {
file {"${target_dir}/${target_file_name}":
ensure => file,
owner => 'root',
group => 'root',
mode => '644',
content => template('icinga2/object_host.conf.erb'),
notify => Service['icinga2'],
}
}