summaryrefslogtreecommitdiff
path: root/puppet/modules/stunnel/manifests/service
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-06-09 17:34:32 +0200
committervarac <varacanero@zeromail.org>2016-06-14 12:05:18 +0200
commitd2c8498b41bebc6a06216515b3cf75564b8fb61a (patch)
tree35a82a51e37c75db2c819d0bda8df832619b143c /puppet/modules/stunnel/manifests/service
parent77450777e17522cc56874e35cceed997378ff3f1 (diff)
git subrepo clone https://leap.se/git/puppet_stunnel puppet/modules/stunnel
subrepo: subdir: "puppet/modules/stunnel" merged: "008777b" upstream: origin: "https://leap.se/git/puppet_stunnel" branch: "master" commit: "008777b" git-subrepo: version: "0.3.0" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "cb2995b"
Diffstat (limited to 'puppet/modules/stunnel/manifests/service')
-rw-r--r--puppet/modules/stunnel/manifests/service/nagios.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/puppet/modules/stunnel/manifests/service/nagios.pp b/puppet/modules/stunnel/manifests/service/nagios.pp
new file mode 100644
index 00000000..578b417e
--- /dev/null
+++ b/puppet/modules/stunnel/manifests/service/nagios.pp
@@ -0,0 +1,12 @@
+# Put a Nagios service check in place for a specific tunnel.
+#
+# The resource name will be used to point to the corresponding stunnel
+# configuration file.
+#
+define stunnel::service::nagios () {
+
+ nagios::service { "stunnel_${name}":
+ check_command => "nagios-stat-proc!/usr/bin/stunnel4 /etc/stunnel/${name}.conf!6!5!proc";
+ }
+
+}