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

}