Fix userdata issue for vping and orchestra
[functest.git] / functest / opnfv_tests / openstack / vping / ping.sh
1 #!/bin/sh
2
3
4 ping -c 1 $1 2>&1 >/dev/null
5 RES=$?
6 if [ "Z$RES" = "Z0" ] ; then
7     echo 'vPing OK'
8 else
9     echo 'vPing KO'
10 fi