diff options
Diffstat (limited to 'puppet/modules/stunnel/manifests')
-rw-r--r-- | puppet/modules/stunnel/manifests/debian.pp | 8 | ||||
-rw-r--r-- | puppet/modules/stunnel/manifests/init.pp | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/puppet/modules/stunnel/manifests/debian.pp b/puppet/modules/stunnel/manifests/debian.pp index bde1e219..1135b98d 100644 --- a/puppet/modules/stunnel/manifests/debian.pp +++ b/puppet/modules/stunnel/manifests/debian.pp @@ -5,13 +5,15 @@ class stunnel::debian inherits stunnel::linux { } Service['stunnel'] { - name => 'stunnel4', - pattern => '/usr/bin/stunnel4', + name => 'stunnel4', + pattern => '/usr/bin/stunnel4', + subscribe => File['/etc/default/stunnel4'], + require => Package['stunnel4'] } file { '/etc/default/stunnel4': content => template('stunnel/Debian/default'), - require => Package['stunnel4'], + before => Package['stunnel4'], notify => Service['stunnel4'], owner => root, group => 0, diff --git a/puppet/modules/stunnel/manifests/init.pp b/puppet/modules/stunnel/manifests/init.pp index f38a2020..544ac04e 100644 --- a/puppet/modules/stunnel/manifests/init.pp +++ b/puppet/modules/stunnel/manifests/init.pp @@ -48,7 +48,8 @@ class stunnel ( recurse => true, purge => true, force => true, - source => undef; + source => undef, + notify => Exec['refresh_stunnel']; "${stunnel_staging}/bin/refresh_stunnel.sh": owner => 0, @@ -58,6 +59,7 @@ class stunnel ( } exec { 'refresh_stunnel': - command => "${stunnel_staging}/bin/refresh_stunnel.sh" + command => "${stunnel_staging}/bin/refresh_stunnel.sh", + require => [ Package['stunnel4'], File['/etc/default/stunnel4'] ] } } |