diff options
author | Giulio Fidente <gfidente@redhat.com> | 2016-08-08 13:32:33 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2016-08-09 13:30:13 +0200 |
commit | 355547c5e83d74b90187552b309154659e4a8139 (patch) | |
tree | 06f20a2b77a6c6f08b53e4de5deb8c5a597e1a09 /manifests/profile/base/cinder | |
parent | 689d80e97188342c84bb965980d48c8ed212e60d (diff) |
Fix use of bootstrap_node in cinder base profile
By inspecting bootstrap_nodeid in cinder base profile we can
set sync_db appropriately and not always default to true.
Change-Id: I2484b1d70a17436c0d8eab9ea8df927d57783784
Diffstat (limited to 'manifests/profile/base/cinder')
-rw-r--r-- | manifests/profile/base/cinder/api.pp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/manifests/profile/base/cinder/api.pp b/manifests/profile/base/cinder/api.pp index e15e112..370b402 100644 --- a/manifests/profile/base/cinder/api.pp +++ b/manifests/profile/base/cinder/api.pp @@ -37,9 +37,7 @@ class tripleo::profile::base::cinder::api ( $sync_db = false } - class { '::tripleo::profile::base::cinder': - pacemaker_master => $sync_db, - } + include ::tripleo::profile::base::cinder if $step >= 3 and $sync_db { include ::cinder::db::mysql |