From 7efc8d6c4357626c060b79ebad18898da4cc562d Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 30 Aug 2017 08:46:26 +0100 Subject: [PATCH] Correct leap hook closing brackets Unfortunately the previous patch improperly applied brackets in two places. Change-Id: I3ce8c17226282c44a8de734aaf93f8f84d10e213 --- leap-upgrades/re-deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leap-upgrades/re-deploy.sh b/leap-upgrades/re-deploy.sh index f89e3698..9e3d5ece 100755 --- a/leap-upgrades/re-deploy.sh +++ b/leap-upgrades/re-deploy.sh @@ -62,7 +62,7 @@ RUN_TASKS+=("lxc-hosts-setup.yml") RUN_TASKS+=("lxc-containers-create.yml") # Post-setup-hosts hook -if [[ -n ${POST_SETUP_HOSTS_HOOK+x} ][; then +if [[ -n ${POST_SETUP_HOSTS_HOOK+x} ]]; then RUN_TASKS+=("$POST_SETUP_HOSTS_HOOK") fi @@ -92,7 +92,7 @@ if [[ -n ${POST_SETUP_INFRASTRUCTURE_HOOK+x} ]]; then fi # Pre-setup-openstack hook -if [[ -n ${PRE_SETUP_OPENSTACK_HOOK+x} ]; then +if [[ -n ${PRE_SETUP_OPENSTACK_HOOK+x} ]]; then RUN_TASKS+=("$PRE_SETUP_OPENSTACK_HOOK") fi