aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/monitoring/times.pp
blob: 42f5d9c3d595619039f8d97ae215a331c8dc736c (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 inherits profile::monitoring::params {
  Nagios_timeperiod {
    ensure  => "present",
    owner   => "naemon",
    group   => "naemon",
    target  => $objects,
    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",
  }

}