diff options
author | Carlos Camacho <ccamacho@redhat.com> | 2016-08-08 13:43:37 +0200 |
---|---|---|
committer | Carlos Camacho <ccamacho@redhat.com> | 2016-08-17 10:21:48 +0200 |
commit | 65ea36f60e2f12e258babc86b83fe7a28ee870a4 (patch) | |
tree | 32a478a961778aafa5531b1a6c3dc7f1b4b7b3a7 /manifests/profile/base/aodh | |
parent | c4360efdc89904f390f6acca30712b025a6c05df (diff) |
Fix deployment steps for AODH profiles
The services in the AODH profiles were
limited to be executed only in the
bootstrap master node.
Change-Id: I85cfa97f0e5e9a70e86e51d8188a2abf86e2ec1c
Diffstat (limited to 'manifests/profile/base/aodh')
-rw-r--r-- | manifests/profile/base/aodh/api.pp | 2 | ||||
-rw-r--r-- | manifests/profile/base/aodh/evaluator.pp | 2 | ||||
-rw-r--r-- | manifests/profile/base/aodh/listener.pp | 2 | ||||
-rw-r--r-- | manifests/profile/base/aodh/notifier.pp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/manifests/profile/base/aodh/api.pp b/manifests/profile/base/aodh/api.pp index 3aa436d..19ecfaf 100644 --- a/manifests/profile/base/aodh/api.pp +++ b/manifests/profile/base/aodh/api.pp @@ -40,7 +40,7 @@ class tripleo::profile::base::aodh::api ( include ::tripleo::profile::base::aodh - if $step >= 4 and $sync_db { + if $step >= 4 { include ::aodh::api include ::aodh::wsgi::apache } diff --git a/manifests/profile/base/aodh/evaluator.pp b/manifests/profile/base/aodh/evaluator.pp index 46d1d14..ca506bc 100644 --- a/manifests/profile/base/aodh/evaluator.pp +++ b/manifests/profile/base/aodh/evaluator.pp @@ -40,7 +40,7 @@ class tripleo::profile::base::aodh::evaluator ( include ::tripleo::profile::base::aodh - if $step >= 4 and $sync_db { + if $step >= 4 { include ::aodh::evaluator } diff --git a/manifests/profile/base/aodh/listener.pp b/manifests/profile/base/aodh/listener.pp index 93f37fa..57ad27f 100644 --- a/manifests/profile/base/aodh/listener.pp +++ b/manifests/profile/base/aodh/listener.pp @@ -40,7 +40,7 @@ class tripleo::profile::base::aodh::listener ( include ::tripleo::profile::base::aodh - if $step >= 4 and $sync_db { + if $step >= 4 { include ::aodh::listener } diff --git a/manifests/profile/base/aodh/notifier.pp b/manifests/profile/base/aodh/notifier.pp index 0686012..03a0a6f 100644 --- a/manifests/profile/base/aodh/notifier.pp +++ b/manifests/profile/base/aodh/notifier.pp @@ -40,7 +40,7 @@ class tripleo::profile::base::aodh::notifier ( include ::tripleo::profile::base::aodh - if $step >= 4 and $sync_db { + if $step >= 4 { include ::aodh::notifier } |