aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/mistral/executor.pp
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-05 13:15:37 +0000
committerGerrit Code Review <review@openstack.org>2016-08-05 13:15:37 +0000
commitfa5bbd7e0df37d7b288f56cb67efbfc7b485ab52 (patch)
tree7dc1b4ab11e7f60291fd6971ee0fa3068e692343 /manifests/profile/base/mistral/executor.pp
parentdca56361fc99d8b8ceb8ebca154ec1d9228ce748 (diff)
parent6121afcc41fc6e18e39525a0ef24c8349e14f183 (diff)
Merge "Fix mistral profile steps"
Diffstat (limited to 'manifests/profile/base/mistral/executor.pp')
-rw-r--r--manifests/profile/base/mistral/executor.pp14
1 files changed, 13 insertions, 1 deletions
diff --git a/manifests/profile/base/mistral/executor.pp b/manifests/profile/base/mistral/executor.pp
index d7b5776..6f101c8 100644
--- a/manifests/profile/base/mistral/executor.pp
+++ b/manifests/profile/base/mistral/executor.pp
@@ -23,13 +23,25 @@
# 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::executor (
$step = hiera('step'),
+ $bootstrap_node = hiera('bootstrap_nodeid', undef),
+
) {
+ if $::hostname == downcase($bootstrap_node) {
+ $sync_db = true
+ } else {
+ $sync_db = false
+ }
+
include ::tripleo::profile::base::mistral
- if $step >= 4 {
+ if $step >= 4 and $sync_db {
include ::mistral::executor
}