summaryrefslogtreecommitdiff
path: root/puppet/modules/nagios/manifests/nrpe/xinetd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/nagios/manifests/nrpe/xinetd.pp')
-rw-r--r--puppet/modules/nagios/manifests/nrpe/xinetd.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/modules/nagios/manifests/nrpe/xinetd.pp b/puppet/modules/nagios/manifests/nrpe/xinetd.pp
new file mode 100644
index 00000000..4de0bac6
--- /dev/null
+++ b/puppet/modules/nagios/manifests/nrpe/xinetd.pp
@@ -0,0 +1,11 @@
+# This is created only to cope with cases where we're not the only ones
+# administering a machine and NRPE is running in xinetd.
+class nagios::nrpe::xinetd inherits base {
+
+ Service["nagios-nrpe-server"] {
+ ensure => stopped,
+ }
+
+ # TODO manage the xinetd config file that glues with NRPE
+
+}