aboutsummaryrefslogtreecommitdiff
path: root/modules/profile/manifests/monitoring/contacts.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profile/manifests/monitoring/contacts.pp')
-rw-r--r--modules/profile/manifests/monitoring/contacts.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/profile/manifests/monitoring/contacts.pp b/modules/profile/manifests/monitoring/contacts.pp
new file mode 100644
index 0000000..a751153
--- /dev/null
+++ b/modules/profile/manifests/monitoring/contacts.pp
@@ -0,0 +1,16 @@
1class profile::monitoring::contacts inherits profile::monitoring::params {
2 Nagios_contactgroup {
3 ensure => "present",
4 owner => "naemon",
5 group => "naemon",
6 target => $objects,
7 notify => Service["naemon"],
8 before => Service["naemon"],
9 require => File["/etc/naemon"],
10 }
11
12 nagios_contactgroup { "admins":
13 alias => "System administrators",
14 }
15
16}