Merge "Correct leap hook closing brackets"

This commit is contained in:
Jenkins 2017-08-30 13:41:40 +00:00 committed by Gerrit Code Review
commit 3d85e5a5fd

View File

@ -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