aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/monitoring/times.pp
blob: fb61acc341662cf15d8a9f525154bad0ac709e76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class profile::monitoring::times {
  Nagios_timeperiod {
    ensure => "present",
    owner  => "naemon",
    group  => "naemon",
    target => "/etc/naemon/objects.cfg",
    notify => Service["naemon"],
    before => Service["naemon"],
  }

  nagios_timeperiod { "24x7":
    alias     => "24 Hours A Day, 7 Days A Week",
    monday    => "00:00-24:00",
    tuesday   => "00:00-24:00",
    wednesday => "00:00-24:00",
    thursday  => "00:00-24:00",
    friday    => "00:00-24:00",
    saturday  => "00:00-24:00",
    sunday    => "00:00-24:00",
  }

}