summaryrefslogtreecommitdiff
path: root/manifests/target.pp
blob: 2036e0141fde01a2be56438bf72da61a99e5ce06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# a simple nagios target to monitor
class nagios::target(
  $parents      = 'absent',
  $address      = $::ipaddress,
  $nagios_alias = false,
  $hostgroups   = 'absent',
  $use          = 'generic-host',
){
  @@nagios_host { $::fqdn:
    address => $address,
    alias   => $nagios_alias,
    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
    }
  }

  if ($parents != 'absent') {
    Nagios_host[$::fqdn]{
      parents => $parents
    }
  }

  if ($hostgroups != 'absent') {
    Nagios_host[$::fqdn]{
      hostgroups => $hostgroups
    }
  }
}