2014-07-10 07:20:01 +02:00
|
|
|
# == Defined type: icinga2::object::host
|
|
|
|
#
|
|
|
|
# This defined type
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
#
|
|
|
|
# See the inline comments.
|
|
|
|
#
|
|
|
|
|
2014-07-27 02:07:03 +02:00
|
|
|
define icinga2::object::host (
|
2014-07-10 07:20:01 +02:00
|
|
|
$object_hostname = $name,
|
|
|
|
$display_name = $fqdn,
|
2014-07-11 06:04:51 +02:00
|
|
|
$ipv4_address = $ipaddress_eth0,
|
2014-07-27 03:20:59 +02:00
|
|
|
$ipv6_address = undef,
|
2014-07-10 07:20:01 +02:00
|
|
|
$template_to_import = 'generic-host',
|
2014-07-11 06:04:51 +02:00
|
|
|
$groups = [],
|
|
|
|
$vars = {},
|
2014-07-27 03:59:25 +02:00
|
|
|
$check_command = undef,
|
2014-07-27 04:10:44 +02:00
|
|
|
$max_check_attempts = undef,
|
2014-07-27 05:15:55 +02:00
|
|
|
$check_period = undef,
|
2014-07-27 05:16:56 +02:00
|
|
|
$check_interval = undef,
|
2014-07-27 05:19:41 +02:00
|
|
|
$retry_interval = undef,
|
2014-07-27 05:41:31 +02:00
|
|
|
$enable_notifications = undef,
|
2014-07-27 05:45:48 +02:00
|
|
|
$enable_active_checks = undef,
|
2014-07-27 05:47:24 +02:00
|
|
|
$enable_passive_checks = undef,
|
2014-07-27 05:50:26 +02:00
|
|
|
$enable_event_handler = undef,
|
2014-07-27 05:53:07 +02:00
|
|
|
$enable_flap_detection = undef,
|
2014-07-27 06:08:09 +02:00
|
|
|
$enable_perfdata = undef,
|
2014-07-27 06:10:25 +02:00
|
|
|
$event_command = undef,
|
2014-07-27 06:12:29 +02:00
|
|
|
#flapping_threshold is defined as a percentage, eg. 10%, 50%, etc.
|
|
|
|
$flapping_threshold = undef,
|
2014-07-27 06:14:20 +02:00
|
|
|
$volatile = undef,
|
2014-07-27 05:45:48 +02:00
|
|
|
|
2014-07-27 03:06:28 +02:00
|
|
|
# Parameters that still need to be included:
|
|
|
|
# notes
|
|
|
|
# notes_url
|
|
|
|
# action_url
|
|
|
|
# icon_image
|
|
|
|
# icon_image_alt
|
2014-07-10 07:20:01 +02:00
|
|
|
$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'],
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|