X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fscripts%2Fartiproxy-upload.sh;fp=common%2Fscripts%2Fartiproxy-upload.sh;h=0e841d8fb858ba226b9807d45be62ec6f84e2c6d;hb=95316ef0f718acf5ba40799bce6b304ae18b452e;hp=c4b7dbec0865b2f3448d261322e0dd2af6d693ab;hpb=d2778b4dc0a650344162490a3b62c8258fd1c7c0;p=src%2Fqa-testdefinitions.git diff --git a/common/scripts/artiproxy-upload.sh b/common/scripts/artiproxy-upload.sh index c4b7dbe..0e841d8 100755 --- a/common/scripts/artiproxy-upload.sh +++ b/common/scripts/artiproxy-upload.sh @@ -1,11 +1,21 @@ #!/bin/sh if [ -z "$PYARTIPROXY_IP" ];then - #echo "ERROR: cannot upload, no PYARTIPROXY_IP" - #exit 1 - # TODO: lab-baylibre-agl does not get env as it should be. I will debug this later. - echo "DEBUG: No PYARTIPROXY_IP variable, fallback to baylibre one" - PYARTIPROXY_IP=10.1.1.47 + + echo "DEBUG: No PYARTIPROXY_IP variable, using fallbacks" + BAYLIBRE_IP=10.1.1.47 + AGLCORELAB_IP=192.168.111.1 + + if ping -q -W 2 -4 -c 1 $BAYLIBRE_IP ; then + PYARTIPROXY_IP=$BAYLIBRE_IP + fi + if ping -q -W 2 -4 -c 1 $AGLCORELAB_IP ; then + PYARTIPROXY_IP=$AGLCORELAB_IP + fi + if [ -z $PYARTIPROXY_IP ] ; then + echo "ERROR: no PYARTIPROXY_IP" + exit 1 + fi fi if [ -z "$1" ];then