aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/monitoring/contacts.pp
blob: a751153b8f171517c6cf686e63bbe7882320b100 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class profile::monitoring::contacts inherits profile::monitoring::params {
  Nagios_contactgroup {
    ensure  => "present",
    owner   => "naemon",
    group   => "naemon",
    target  => $objects,
    notify  => Service["naemon"],
    before  => Service["naemon"],
    require => File["/etc/naemon"],
  }

  nagios_contactgroup { "admins":
    alias => "System administrators",    
  }

}