Fixes netcat for multiple platforms 89/6389/1
authorTim Rozet <trozet@redhat.com>
Tue, 12 Jan 2016 15:14:11 +0000 (10:14 -0500)
committerJose Lausuch <jose.lausuch@ericsson.com>
Tue, 12 Jan 2016 15:22:26 +0000 (15:22 +0000)
netcat package on LF POD1 missing -z arg.  This update allows for netcat
to be used when platforms are missing it.

Change-Id: I09fb9986520018a92a1c9147a2948ae5029bb3e3
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit 83cb89a2cd3b95acab7f616533653493354138c1)

testcases/VIM/OpenStack/CI/libraries/check_os.sh

index 88c7607..5602052 100755 (executable)
@@ -8,7 +8,7 @@
 
 verify_connectivity() {
     for i in $(seq 0 10); do
-        if nc -vz $1 $2 &>/dev/null; then
+        if echo "test" | nc -v $1 $2 &>/dev/null; then
             return 0
         fi
         sleep 1