summaryrefslogtreecommitdiff
path: root/puppet/modules/nagios/manifests/service/passive.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/nagios/manifests/service/passive.pp')
-rw-r--r--puppet/modules/nagios/manifests/service/passive.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/nagios/manifests/service/passive.pp b/puppet/modules/nagios/manifests/service/passive.pp
new file mode 100644
index 00000000..f3df1e8b
--- /dev/null
+++ b/puppet/modules/nagios/manifests/service/passive.pp
@@ -0,0 +1,18 @@
+define nagios::service::passive(
+ $ensure = present,
+ $notification_interval = '',
+ $notification_period = '',
+ $notification_options = '',
+ $contact_groups = ''
+) {
+
+ nagios::service { $name:
+ use => 'passive-service',
+ check_command => 'check_dummy!0',
+ notification_interval => $notification_interval,
+ notification_period => $notification_period,
+ notification_options => $notification_options,
+ contact_groups => $contact_groups,
+ }
+
+}