aboutsummaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-01-10 22:40:45 +0000
committerGerrit Code Review <review@openstack.org>2017-01-10 22:40:45 +0000
commit5acb133b7f1ec727d544362a4901f7abd05550a9 (patch)
tree5eee925b00f8c3bb8bb3a02e555af796e99f97b4 /manifests
parentd67e94a7e13fcbf0b349d97f0a00a42792469dcb (diff)
parent079468f97a30bf57b01caedcfc1837fc7ae11ea4 (diff)
Merge "Rspec tests for nova profiles"
Diffstat (limited to 'manifests')
-rw-r--r--manifests/profile/base/nova.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/profile/base/nova.pp b/manifests/profile/base/nova.pp
index 63adbef..dae627c 100644
--- a/manifests/profile/base/nova.pp
+++ b/manifests/profile/base/nova.pp
@@ -87,7 +87,7 @@ class tripleo::profile::base::nova (
$memcache_servers = suffix(hiera('memcached_node_ips'), ':11211')
}
- if hiera('step') >= 4 or (hiera('step') >= 3 and $sync_db) {
+ if $step >= 4 or ($step >= 3 and $sync_db) {
$messaging_use_ssl_real = sprintf('%s', bool2num(str2bool($messaging_use_ssl)))
# TODO(ccamacho): remove sprintf once we properly type the port, needs
# to be a string for the os_transport_url function.