diff options
author | Carlos Camacho <ccamacho@redhat.com> | 2016-08-03 17:33:10 +0200 |
---|---|---|
committer | Carlos Camacho <ccamacho@redhat.com> | 2016-08-03 17:40:54 +0200 |
commit | c46bbb5e572cc60101d3860ed8be93de3019ba4d (patch) | |
tree | 6447f8f44e6f2f93db7e8cfa50e82bca3374a12c /manifests/profile/pacemaker/sahara.pp | |
parent | 4ffced9834e4c17a11f02f14496c88b96577c15b (diff) |
Remove unused parameter in sahara
Remove unused parameter in sahara
Change-Id: I46c033b410ab850289b798ee93990b6fb10c80ea
Diffstat (limited to 'manifests/profile/pacemaker/sahara.pp')
-rw-r--r-- | manifests/profile/pacemaker/sahara.pp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/manifests/profile/pacemaker/sahara.pp b/manifests/profile/pacemaker/sahara.pp index e6e5117..0627017 100644 --- a/manifests/profile/pacemaker/sahara.pp +++ b/manifests/profile/pacemaker/sahara.pp @@ -18,18 +18,13 @@ # # === Parameters # -# [*bootstrap_node*] -# (Optional) The hostname of the node responsible for bootstrapping tasks -# Defaults to hiera('bootstrap_nodeid') -# # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates # for more details. # Defaults to hiera('step') # class tripleo::profile::pacemaker::sahara ( - $bootstrap_node = hiera('bootstrap_nodeid'), - $step = hiera('step'), + $step = hiera('step'), ) { Service <| tag == 'sahara-service' |> { @@ -39,11 +34,5 @@ class tripleo::profile::pacemaker::sahara ( stop => '/bin/true', } - if $::hostname == downcase($bootstrap_node) { - $pacemaker_master = true - } else { - $pacemaker_master = false - } - include ::tripleo::profile::base::sahara } |