From 2f8f58e0413f460924c5d01bd7eb4b4a819d54d0 Mon Sep 17 00:00:00 2001 From: Davlet Panech Date: Fri, 7 Oct 2022 10:26:16 -0400 Subject: [PATCH] Fix bashate failure in zuul Zuul jobs use a recently released version of bashate, which causes tox errors. This patch fixes the whitespace errors to prevent Zuul jobs from failing. Signed-off-by: Davlet Panech Change-Id: Icf46eb4cbff7f15392291f06e0628bc7c1798e17 --- deployment/virtualbox/pybox/configs/aio-sx/lab_setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deployment/virtualbox/pybox/configs/aio-sx/lab_setup.sh b/deployment/virtualbox/pybox/configs/aio-sx/lab_setup.sh index 3dd9f9ba..2f94e638 100755 --- a/deployment/virtualbox/pybox/configs/aio-sx/lab_setup.sh +++ b/deployment/virtualbox/pybox/configs/aio-sx/lab_setup.sh @@ -5804,8 +5804,8 @@ function setup_cgts_extend { local PROVISION_PV_TIMEOUT=180 for DEVICE in "${DEVICES[@]}"; do - # Check if this PV is already in cgts-vg. - # Special case: after lab_cleanup we may already have this PV in cgts-vg. + # Check if this PV is already in cgts-vg. + # Special case: after lab_cleanup we may already have this PV in cgts-vg. local CGTS_VG=$(system host-pv-list $NODE ${CLI_NOWRAP} | grep $DEVICE | awk -F'|' '{print $9}') if [[ "${CGTS_VG}" == *"cgts-vg"* ]]; then log "Skipping adding device $DEVICE to cgts-vg for ${NODE}; already done" @@ -6235,8 +6235,8 @@ function is_https_security_configuration { if [ "${SYSTEM_HTTPS_ENABLED}" != "${HTTPS_ENABLED}" ]; then return 0 else - # configuration value in .conf file matches with system show value . - # no changes needed. + # configuration value in .conf file matches with system show value . + # no changes needed. return 1 fi else