aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2016-07-08 09:07:27 -0400
committerDan Prince <dprince@redhat.com>2016-07-08 09:07:27 -0400
commit93c5d6103f9d4c12cd401d30b2408a8532c94922 (patch)
tree3eb5405be5e4c50a0ae38a759613174ed977e492 /manifests/profile/base
parent9f0ab60383509548e91740ec6559ab9af0f04199 (diff)
Use include for base neutron profile
Simplify the base neutron profile so that we always include the neutron and neutron::config classes at step 3. In doing so we can now simplify the pacemaker version to use a simple include which will avoid duplicate class errors. Change-Id: I95b9188607ab6c599ad4cde6faa1deb081618f3e
Diffstat (limited to 'manifests/profile/base')
-rw-r--r--manifests/profile/base/neutron.pp7
1 files changed, 1 insertions, 6 deletions
diff --git a/manifests/profile/base/neutron.pp b/manifests/profile/base/neutron.pp
index d5efa81..1ee2d90 100644
--- a/manifests/profile/base/neutron.pp
+++ b/manifests/profile/base/neutron.pp
@@ -18,19 +18,14 @@
#
# === Parameters
#
-# [*sync_db*]
-# (Optional) Whether to run db sync
-# Defaults to true
-#
# [*step*]
# (Optional) The current step of the deployment
# Defaults to hiera('step')
#
class tripleo::profile::base::neutron (
- $sync_db = true,
$step = hiera('step'),
) {
- if hiera('step') >= 4 or ( hiera('step') >= 3 and $sync_db ) {
+ if hiera('step') >= 3 {
include ::neutron
include ::neutron::config
}