From 0b488591cadc239ecd1e6beebbc76da63baece2c Mon Sep 17 00:00:00 2001 From: mh Date: Wed, 24 Feb 2010 20:16:43 +0100 Subject: refactoring - no behavior change - everything goes into its own file -> autolookup - order the params of the define nicer -> debugging! - move nagios stuff to the init class -> configure module at the very first point - move variable version enforcing to init class -> configure module at the very first point --- manifests/base.pp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 manifests/base.pp (limited to 'manifests/base.pp') diff --git a/manifests/base.pp b/manifests/base.pp new file mode 100644 index 0000000..3061902 --- /dev/null +++ b/manifests/base.pp @@ -0,0 +1,13 @@ +class stunnel::base { + + file { "/etc/stunnel": + ensure => directory; + } + + service { 'stunnel': + name => 'stunnel', + enable => true, + ensure => running, + hasstatus => false; + } +} -- cgit v1.2.3