From c46bbb5e572cc60101d3860ed8be93de3019ba4d Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Wed, 3 Aug 2016 17:33:10 +0200 Subject: Remove unused parameter in sahara Remove unused parameter in sahara Change-Id: I46c033b410ab850289b798ee93990b6fb10c80ea --- manifests/profile/pacemaker/sahara.pp | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'manifests') 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 } -- cgit 1.2.3-korg