diff options
author | varac <varacanero@zeromail.org> | 2016-06-13 20:11:23 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2016-06-14 23:19:20 +0200 |
commit | e4f36f7f143641eee96fb092d840a7f75e6d13cc (patch) | |
tree | 3114f59c62931f164aa412a08d37e6f8ace12395 /puppet/modules/site_couchdb | |
parent | e9889220fa4107ee01efd38cf03f27ffc85d80fb (diff) |
Notify Exec[shorewall_check] not Service[shorew..]gitsubrepo
Latest shorewall module does `shorewall check` (executed
by `Exec[shorewall_check]`) so every related resource change
must notify this Exec instead of `Service[shorewall]` as before.
Diffstat (limited to 'puppet/modules/site_couchdb')
-rw-r--r-- | puppet/modules/site_couchdb/manifests/bigcouch.pp | 2 | ||||
-rw-r--r-- | puppet/modules/site_couchdb/manifests/init.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_couchdb/manifests/bigcouch.pp b/puppet/modules/site_couchdb/manifests/bigcouch.pp index 2de3d4d0..dd3c0a7f 100644 --- a/puppet/modules/site_couchdb/manifests/bigcouch.pp +++ b/puppet/modules/site_couchdb/manifests/bigcouch.pp @@ -20,7 +20,7 @@ class site_couchdb::bigcouch { Class['site_config::default'] -> Class['site_config::resolvconf'] -> Class['couchdb::bigcouch::package::cloudant'] - -> Service['shorewall'] + -> Exec['shorewall_check'] -> Exec['refresh_stunnel'] -> Class['site_couchdb::setup'] -> Class['site_couchdb::bigcouch::add_nodes'] diff --git a/puppet/modules/site_couchdb/manifests/init.pp b/puppet/modules/site_couchdb/manifests/init.pp index c4fe6277..c5944fc4 100644 --- a/puppet/modules/site_couchdb/manifests/init.pp +++ b/puppet/modules/site_couchdb/manifests/init.pp @@ -48,7 +48,7 @@ class site_couchdb { include site_couchdb::plain Class['site_config::default'] - -> Service['shorewall'] + -> Exec['shorewall_check'] -> Exec['refresh_stunnel'] -> Class['couchdb'] -> Class['site_couchdb::setup'] |