aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/heat.pp
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-07-22 16:11:21 +0000
committerGerrit Code Review <review@openstack.org>2016-07-22 16:11:21 +0000
commitb0f6a45943800f4121f4093653c6c37969899f7f (patch)
tree3dc548303ecab6e6d5783ba6c07a2a10308f22f3 /manifests/profile/base/heat.pp
parentd355194bec2da69088d111955920fd14438aca7d (diff)
parent95b432e9bc6295ed9f544db6077143c2f0660165 (diff)
Merge "use parameter to lookup the step instead of hiera again"
Diffstat (limited to 'manifests/profile/base/heat.pp')
-rw-r--r--manifests/profile/base/heat.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/heat.pp b/manifests/profile/base/heat.pp
index fa0e2f1..1311f20 100644
--- a/manifests/profile/base/heat.pp
+++ b/manifests/profile/base/heat.pp
@@ -44,7 +44,7 @@ class tripleo::profile::base::heat (
# Domain resources will be created at step5 on the pacemaker_master so we
# configure heat.conf at step3 and 4 but actually create the domain later.
- if hiera('step') == 3 or hiera('step') == 4 {
+ if $step == 3 or $step == 4 {
class { '::heat::keystone::domain':
manage_domain => false,
manage_user => false,