summaryrefslogtreecommitdiff
path: root/manifests/target/fqdn.pp
blob: 6bb16c1e95683ab1d63f08b495891ad0ac8fb898 (plain)
1
2
3
4
5
6
7
8
9
10
class nagios::target::fqdn(
  $hostgroups = 'absent',
  $parents = 'absent'
) {
  class{'nagios::target':
    address => $::fqdn,
    hostgroups => $hostgroups,
    parents => $parents
  }
}