From: Szilard Cserey Date: Fri, 4 Sep 2015 09:33:13 +0000 (+0200) Subject: FIX for ip link state verification X-Git-Tag: arno.2015.2.0~53 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F95%2F1395%2F2;p=genesis.git FIX for ip link state verification Change-Id: Ibe0840a74b9fe7fc0041ce92190cf82f25ae9298 Signed-off-by: Szilard Cserey --- diff --git a/common/ci/setup.sh b/common/ci/setup.sh index 4d754a9..380ac4d 100755 --- a/common/ci/setup.sh +++ b/common/ci/setup.sh @@ -90,7 +90,7 @@ check_interface() { ip link set dev ${interface} up sleep 5 link_state=$(ip link show ${interface} | grep -oP 'state \K[^ ]+') - if [[ ${link_state} != 'UP' ]]; then + if [[ ${link_state} == 'DOWN' ]]; then echo "${red}Could not bring UP interface ${interface} link state is ${link_state}${reset}" exit 1 fi