summaryrefslogtreecommitdiff
path: root/manifests/target.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-03-01 11:59:10 +0100
committervarac <varacanero@zeromail.org>2016-03-01 11:59:10 +0100
commit53e2db13e5082f09fcee7d34ed83b3dfaef06e52 (patch)
tree3f082b3311d08140e29c9ca730cfa3c8061545a8 /manifests/target.pp
parent70afab799b8cf720cd12bd225c1c2948fd1597ee (diff)
parentc0dee4a2393e23b226e123a427898de94b342141 (diff)
Merge remote-tracking branch 'shared/master' into leap_master
Diffstat (limited to 'manifests/target.pp')
-rw-r--r--manifests/target.pp30
1 files changed, 15 insertions, 15 deletions
diff --git a/manifests/target.pp b/manifests/target.pp
index 40ff18a..760d7d4 100644
--- a/manifests/target.pp
+++ b/manifests/target.pp
@@ -1,32 +1,32 @@
-# manifests/target.pp
-
+# a simple nagios target to monitor
class nagios::target(
- $parents = 'absent',
- $address = $::ipaddress,
- $nagios_alias = $::false,
- $hostgroups = 'absent',
- $notes = 'absent'
+ $parents = 'absent',
+ $address = $::ipaddress,
+ $nagios_alias = false,
+ $hostgroups = 'absent',
+ $use = 'generic-host',
){
@@nagios_host { $::fqdn:
address => $address,
- use => 'generic-host',
+ use => $use,
}
# Watch out with using aliases: they need to be unique throughout *all*
# resources in a given host's catalogue.
if $nagios_alias {
- Nagios_host[$::fqdn] {
- alias => $nagios_alias,
+ Nagios_host[$::fqdn]{
+ alias => $nagios_alias
}
}
if ($parents != 'absent') {
- Nagios_host[ $::fqdn ] { parents => $parents }
+ Nagios_host[$::fqdn]{
+ parents => $parents
+ }
}
if ($hostgroups != 'absent') {
- Nagios_host[ $::fqdn ] { hostgroups => $hostgroups }
- }
- if ($notes != 'absent') {
- Nagios_host[ $::fqdn ] { notes => $notes }
+ Nagios_host[$::fqdn]{
+ hostgroups => $hostgroups
+ }
}
}