From: Tomáš Levora Date: Fri, 9 Aug 2019 08:24:31 +0000 (+0200) Subject: Fixing syntax in vCPE scripts X-Git-Tag: 1.5.0~30 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=demo.git;a=commitdiff_plain;h=c3aa23f2a11dbcf3f154fce659967fdccbdbfc24 Fixing syntax in vCPE scripts Issue-ID: INT-1199 Signed-off-by: Tomáš Levora Change-Id: I0444dba68fe8b9701e4e7a6055a1d6b9a0c600ff --- diff --git a/vnfs/vCPE/scripts/v_bng_build.sh b/vnfs/vCPE/scripts/v_bng_build.sh index 5ec533be..46f6f904 100644 --- a/vnfs/vCPE/scripts/v_bng_build.sh +++ b/vnfs/vCPE/scripts/v_bng_build.sh @@ -42,7 +42,7 @@ cdr2mask () { UNATTENDED='y' make install-dep # Check VPP build status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: VPP build failed' > /opt/script_status.txt exit @@ -62,7 +62,7 @@ cdr2mask () { make V=0 PLATFORM=vpp TAG=vpp install-deb # Check vpp/build-root status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: vpp/build-root build failed' > /opt/script_status.txt exit @@ -76,7 +76,7 @@ cdr2mask () { dpkg -i *.deb # Check VPP package installation status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: VPP package installation failed' > /opt/script_status.txt exit diff --git a/vnfs/vCPE/scripts/v_brgemu_build.sh b/vnfs/vCPE/scripts/v_brgemu_build.sh index 072a5509..5701740e 100644 --- a/vnfs/vCPE/scripts/v_brgemu_build.sh +++ b/vnfs/vCPE/scripts/v_brgemu_build.sh @@ -35,7 +35,7 @@ cdr2mask () { yes y | make install-dep # Check vpp build status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: VPP build failed' > /opt/script_status.txt exit @@ -46,7 +46,7 @@ cdr2mask () { make V=0 PLATFORM=vpp TAG=vpp install-deb # Check vpp/build-root build status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: vpp/build-root build failed' > /opt/script_status.txt exit @@ -56,7 +56,7 @@ cdr2mask () { dpkg -i *.deb # Check vpp package installation status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: VPP package installation failed' > /opt/script_status.txt exit @@ -183,7 +183,7 @@ EOF mvn clean install # Check hc2vpp build status - if [[$? -ne 0]] + if [[ $? -ne 0 ]] then echo $ERROR_MESSAGE 'Reason: hc2vpp build failed' > /opt/script_status.txt exit