diff options
author | varac <varacanero@zeromail.org> | 2016-06-14 21:19:31 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-06-14 21:19:31 +0200 |
commit | 31f27c8ca0117e7ccb75aa3e6919b3467627a93c (patch) | |
tree | 77dc1e5fc770d082b411c46da18d27ea5df01694 /puppet/modules/stunnel/manifests/debian.pp | |
parent | 9be18eb2681eb5c9047782eaf4e0c6b8c03ce6e6 (diff) |
git subrepo clone --force https://leap.se/git/puppet_stunnel puppet/modules/stunnel
subrepo:
subdir: "puppet/modules/stunnel"
merged: "523612f"
upstream:
origin: "https://leap.se/git/puppet_stunnel"
branch: "master"
commit: "523612f"
git-subrepo:
version: "0.3.0"
origin: "https://github.com/ingydotnet/git-subrepo.git"
commit: "cb2995b"
Diffstat (limited to 'puppet/modules/stunnel/manifests/debian.pp')
-rw-r--r-- | puppet/modules/stunnel/manifests/debian.pp | 8 |
1 files changed, 5 insertions, 3 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, |