diff options
author | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2016-08-09 08:47:28 +0300 |
---|---|---|
committer | Juan Antonio Osorio Robles <jaosorior@redhat.com> | 2016-08-13 09:55:08 +0000 |
commit | 593503e351314e681558142399495be082e8117c (patch) | |
tree | 6b78641ee5157d642e30b13ef75bbe60d7ec4c9c /manifests/profile/base/heat/api_cfn.pp | |
parent | 6e9c1f50a3b0c17854663a81d19a788e241257d6 (diff) |
Include heat base profile outside of step
The base profile can already take the steps into account. so it's not
necessary to include it inside the if statement.
Change-Id: I7b22063db7ff4807242cc0e353dccc34be848b8d
Diffstat (limited to 'manifests/profile/base/heat/api_cfn.pp')
-rw-r--r-- | manifests/profile/base/heat/api_cfn.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/profile/base/heat/api_cfn.pp b/manifests/profile/base/heat/api_cfn.pp index 7c80fc6..c1adae6 100644 --- a/manifests/profile/base/heat/api_cfn.pp +++ b/manifests/profile/base/heat/api_cfn.pp @@ -26,8 +26,9 @@ class tripleo::profile::base::heat::api_cfn ( $step = hiera('step'), ) { + include ::tripleo::profile::base::heat + if $step >= 4 { - include ::tripleo::profile::base::heat include ::heat::api_cfn } } |