From: Sebastien Douheret Date: Tue, 29 Aug 2017 22:01:19 +0000 (+0200) Subject: Prevent script freeze when iot.bzh website is not accessible. X-Git-Tag: v0.2.2~4 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fxds%2Fxds-server.git;a=commitdiff_plain;h=2af318e04ce5c036e4a74ee68b096dc45bb198f0 Prevent script freeze when iot.bzh website is not accessible. --- diff --git a/scripts/xds-utils/get-xds-agent.sh b/scripts/xds-utils/get-xds-agent.sh index 0813875..0404dac 100755 --- a/scripts/xds-utils/get-xds-agent.sh +++ b/scripts/xds-utils/get-xds-agent.sh @@ -39,6 +39,13 @@ if [ ! -d ${DEST_DIR} ]; then exit 1 fi +# Fisrt check if we can access to iot.bzh (aka ovh.iot) +ping -c 1 -W 5 www.ovh.iot > /dev/null +if [ "$?" != "0" ]; then + echo "iot.bzh website not accessible !" + exit 1 +fi + # Get not existing tarballs exitCode=0 for file in $TARBALLS; do