From 2af318e04ce5c036e4a74ee68b096dc45bb198f0 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Wed, 30 Aug 2017 00:01:19 +0200 Subject: Prevent script freeze when iot.bzh website is not accessible. --- scripts/xds-utils/get-xds-agent.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts') 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 -- cgit 1.2.3-korg