aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/monitor.pp
blob: d7fa7209d1383d06e24cf7e7eed86635add1b05d (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
class nodo::subsystem::monitor(
  $type       = 'vserver',
  $use_nagios = hiera('nodo::subsystem::monitor::use_nagios', True),
  $use_fqdn   = hiera('nodo::subsystem::monitor::use_nagios_fqdn', false)
) {

  if $use_nagios != false {

    if $type == 'vserver' {
      include nagios::target::fqdn
      nagios::service::ping { "${::fqdn}": }
    }

    if $type == 'host' or $type == 'personal' {
      if $use_fqdn == true {
        include nagios::target::fqdn
      }
      else {
        include nagios::target
      }
      nagios::service::ping { "${::fqdn}": }
    }

  }

}