diff options
Diffstat (limited to 'manifests/profile/base/mistral.pp')
-rw-r--r-- | manifests/profile/base/mistral.pp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/manifests/profile/base/mistral.pp b/manifests/profile/base/mistral.pp index c0b0538..0c41193 100644 --- a/manifests/profile/base/mistral.pp +++ b/manifests/profile/base/mistral.pp @@ -18,20 +18,19 @@ # # === Parameters # +# [*bootstrap_node*] +# (Optional) The hostname of the node responsible for bootstrapping tasks +# Defaults to hiera('bootstrap_nodeid') +# # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates # for more details. # Defaults to hiera('step') # -# [*bootstrap_node*] -# (Optional) The hostname of the node responsible for bootstrapping tasks -# Defaults to hiera('bootstrap_nodeid') -# class tripleo::profile::base::mistral ( - $step = hiera('step'), $bootstrap_node = hiera('bootstrap_nodeid', undef), + $step = hiera('step'), ) { - if $::hostname == downcase($bootstrap_node) { $sync_db = true } else { @@ -42,7 +41,7 @@ class tripleo::profile::base::mistral ( include ::mistral::db::mysql } - if $step >= 4 and $sync_db { + if $step >= 4 or ($step >= 3 and $sync_db) { include ::mistral include ::mistral::config include ::mistral::client |