summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2009-10-02 18:02:20 -0400
committerMicah Anderson <micah@riseup.net>2009-10-02 18:02:20 -0400
commitce6a688e30db5e1833a14cadb7d4709a15964b08 (patch)
treea2a456fa466d1eddcb2598236810c511e497fc4b /manifests
parent666500f0ff8ccd48378ba883c21d99dd9ab146be (diff)
fix the client variable configuration in the template
also fix the service depending on the unnecessary stunnel.conf
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp6
1 files changed, 1 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6693bc2..bdf6346 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -73,8 +73,7 @@ class stunnel::base {
name => 'stunnel',
enable => true,
ensure => running,
- hasstatus => false,
- require => File["/etc/stunnel/stunnel.conf"];
+ hasstatus => false;
}
if $use_nagios {
@@ -91,9 +90,6 @@ class stunnel::linux inherits stunnel::base {
package { 'stunnel':
ensure => $stunnel_ensure_version
}
- File[stunnel_config]{
- require => Package[stunnel]
- }
}