From d34962e4125d54e7de30601ca46471a49cd89757 Mon Sep 17 00:00:00 2001 From: Gabriel Filion Date: Fri, 20 Feb 2015 18:14:21 -0500 Subject: Split nagios resources into their own file. This will make it possible to manage nagios resources from a point external to this module in order to have more fine-grained control. --- manifests/service.pp | 4 +--- manifests/service/nagios.pp | 12 ++++++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 manifests/service/nagios.pp diff --git a/manifests/service.pp b/manifests/service.pp index 910f714..fe36c2f 100644 --- a/manifests/service.pp +++ b/manifests/service.pp @@ -72,8 +72,6 @@ define stunnel::service ( } if $manage_nagios { - nagios::service { "stunnel_${name}": - check_command => "nagios-stat-proc!/usr/bin/stunnel4 /etc/stunnel/${name}.conf!6!5!proc"; - } + stunnel::service::nagios { $name: } } } diff --git a/manifests/service/nagios.pp b/manifests/service/nagios.pp new file mode 100644 index 0000000..578b417 --- /dev/null +++ b/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"; + } + +} -- cgit v1.2.3