Temporary Hardcoded Ubuntu repo 85/21885/1
authorJonas Bjurel <jonas.bjurel@ericsson.com>
Tue, 20 Sep 2016 15:30:37 +0000 (17:30 +0200)
committerJonas Bjurel <jonas.bjurel@ericsson.com>
Tue, 20 Sep 2016 15:30:37 +0000 (17:30 +0200)
Meanwhile we're investigating the issues with Ubuntu repo mirror selection,
we will hardcode the Ubuntu repo mirror

Change-Id: I776bd3a8a72dc87e00052e8ff965de1134293c7a
Signed-off-by: Jonas Bjurel <jonas.bjurel@ericsson.com>
build/f_isoroot/f_repobuild/select_ubuntu_repo.sh

index c3bb5cf..20b3485 100755 (executable)
 # for them not to be considered.
 BLACKLIST="mirror.clibre.uqam.ca"
 
-for url in $((curl -s  https://launchpad.net/ubuntu/+archivemirrors | \
-              grep -P -B8 "statusUP|statusSIX" | \
-              grep -o -P "(f|ht)tp.*\""  | \
-              sed 's/"$//' | sort | uniq; \
-              curl -s http://mirrors.ubuntu.com/mirrors.txt | sort | uniq) | \
-              sort | uniq -d)
-do
-    host=$(echo $url | cut -d'/' -f3)
-    echo ${BLACKLIST} | grep -q ${host} && continue
-    if curl -s -o /dev/null --head --fail "$url"; then
-      echo $url
-      exit 0
-    else
-      continue
-    fi
-done
+#NOTE: For now the mirror selection is disabled due to issues not yet
+#      understood/resolved.
+#for url in $((curl -s  https://launchpad.net/ubuntu/+archivemirrors | \
+#              grep -P -B8 "statusUP|statusSIX" | \
+#              grep -o -P "(f|ht)tp.*\""  | \
+#              sed 's/"$//' | sort | uniq; \
+#              curl -s http://mirrors.ubuntu.com/mirrors.txt | sort | uniq) | \
+#              sort | uniq -d)
+#do
+#    host=$(echo $url | cut -d'/' -f3)
+#    echo ${BLACKLIST} | grep -q ${host} && continue
+#    if curl -s -o /dev/null --head --fail "$url"; then
+#      echo $url
+#      exit 0
+#    else
+#      continue
+#    fi
+#done
 
 # If no suitable local mirror can be found,
 # the default archive is returned instead.