Fixed again freeze when iot.bzh website is not accessible v0.2.2
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Wed, 30 Aug 2017 19:53:52 +0000 (21:53 +0200)
committerSebastien Douheret <sebastien.douheret@iot.bzh>
Wed, 30 Aug 2017 20:17:35 +0000 (22:17 +0200)
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
scripts/xds-utils/get-xds-agent.sh

index 0404dac..d2f7024 100755 (executable)
@@ -5,6 +5,13 @@
 [ -z "$XDS_AGENT_BASEURL" ] && XDS_AGENT_BASEURL="http://iot.bzh/download/public/2017/XDS/xds-agent/"
 [ -z "$DEST_DIR" ] && DEST_DIR=./webapp/dist/assets/xds-agent-tarballs
 
+# Fisrt check if we can access to iot.bzh (aka ovh.iot)
+ping -c 1 -W 2 www.ovh.iot > /dev/null
+if [ "$?" != "0" ]; then
+    echo "iot.bzh website not accessible !"
+    exit 1
+fi
+
 TARBALLS=$(curl -s ${XDS_AGENT_BASEURL} | grep -oP  'href="[^"]*.zip"' | cut -d '"' -f 2)
 
 usage() {
@@ -39,13 +46,6 @@ 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