aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/sahara
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-08-09 18:12:12 +0000
committerGerrit Code Review <review@openstack.org>2016-08-09 18:12:12 +0000
commit9968f0b954fcc1a25582c76c80f9440ed65dec85 (patch)
tree58640bd77641ced18e0a2ceb4b8a4927abd25b7d /manifests/profile/base/sahara
parent20e1a821852d34f9c3201362cd619e41269ddbfd (diff)
parentc99c7862da980119fc9a51d18ab492bc03f00684 (diff)
Merge "Only db-sync sahara is included in the bootstrapnode"
Diffstat (limited to 'manifests/profile/base/sahara')
-rw-r--r--manifests/profile/base/sahara/api.pp3
-rw-r--r--manifests/profile/base/sahara/engine.pp3
2 files changed, 4 insertions, 2 deletions
diff --git a/manifests/profile/base/sahara/api.pp b/manifests/profile/base/sahara/api.pp
index df6c4c9..1ead106 100644
--- a/manifests/profile/base/sahara/api.pp
+++ b/manifests/profile/base/sahara/api.pp
@@ -26,8 +26,9 @@
class tripleo::profile::base::sahara::api (
$step = hiera('step'),
) {
+ include ::tripleo::profile::base::sahara
+
if $step >= 4 {
- include ::tripleo::profile::base::sahara
include ::sahara::service::api
}
}
diff --git a/manifests/profile/base/sahara/engine.pp b/manifests/profile/base/sahara/engine.pp
index db5ec51..4dbaa85 100644
--- a/manifests/profile/base/sahara/engine.pp
+++ b/manifests/profile/base/sahara/engine.pp
@@ -37,12 +37,13 @@ class tripleo::profile::base::sahara::engine (
$sync_db = false
}
+ include ::tripleo::profile::base::sahara
+
if $step >= 3 and $sync_db {
include ::sahara::db::mysql
}
if $step >= 4 or ($step >= 3 and $sync_db) {
- include ::tripleo::profile::base::sahara
include ::sahara::service::engine
}
}