[ -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() {
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