summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-07-02 16:43:41 -0400
committerMicah Anderson <micah@riseup.net>2013-07-02 16:43:41 -0400
commitfc1589a5f09d80f58d730d4e1f6a8058483f61fc (patch)
tree2328e80b236fd474331e607dc334e1d24ec03cf6
parent1a12adc97d70224a0e750c6ab8a41073ced72d2b (diff)
we need to make sure that the stunnel package is installed before any attempt to refresh happens
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 89788ed..0d960c0 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -59,7 +59,7 @@ class stunnel (
exec { 'refresh_stunnel':
refreshonly => true,
- require => File[$stunnel_compdir],
+ require => [ Package['stunnel'], File[$stunnel_compdir] ],
subscribe => File[$stunnel_compdir],
command => "${stunnel_staging}/bin/refresh_stunnel.sh"
}