summaryrefslogtreecommitdiff
path: root/manifests/target/fqdn.pp
blob: 31fc4b7143dd282e5d3aa3cad5e7af03f4af5627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# monitor a host by fqdn
class nagios::target::fqdn(
  $address    = $::fqdn,
  $hostgroups = 'absent',
  $parents    = 'absent'
) {
  class{'nagios::target':
    address    => $address,
    hostgroups => $hostgroups,
    parents    => $parents
  }
}