From 3e506f9248f2a64a8a30c832049df392b01fcb4e Mon Sep 17 00:00:00 2001
From: Jonas Bjurel <jonas.bjurel@ericsson.com>
Date: Tue, 20 Sep 2016 17:30:37 +0200
Subject: Temporary Hardcoded Ubuntu repo

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 | 34 ++++++++++++-----------
 1 file changed, 18 insertions(+), 16 deletions(-)

(limited to 'build')

diff --git a/build/f_isoroot/f_repobuild/select_ubuntu_repo.sh b/build/f_isoroot/f_repobuild/select_ubuntu_repo.sh
index c3bb5cf36..20b3485a1 100755
--- a/build/f_isoroot/f_repobuild/select_ubuntu_repo.sh
+++ b/build/f_isoroot/f_repobuild/select_ubuntu_repo.sh
@@ -16,22 +16,24 @@
 # 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.
-- 
cgit