Issue 5141 is an infinite wait / hang in the Ubiquity when it tests 
the speed of the various repos and one is offline.  This is a bug in 
code supplied by the Trisquel helper.  Attached is a diff to correct 
the helper.  The code change has been tested by manually applying the 
single line change to the relevant file on a USB installer key.   So 
this patch itself will need verifying by someone with the knowledge 
of how to build an install image.

The bug is also extant in the 6.0 RC3 installer.  However,  I don't 
know the git repo address to get access to the helpers for that.

Leny2010 / Andrew
=== modified file 'helpers/oneiric/make-ubiquity'
--- helpers/oneiric/make-ubiquity	2012-04-05 03:02:38 +0000
+++ helpers/oneiric/make-ubiquity	2012-12-13 15:24:36 +0000
@@ -57,7 +57,7 @@
 do
     echo Testing \$i
     TIME=\$(date +%s%N)
-    wget -o /dev/null -O /dev/null \$i/speedtest || continue
+    wget -T 60 -t 1 -o /dev/null -O /dev/null \$i/speedtest || continue
     TIME2=\$(date +%s%N)
     ELAPSED=\$(expr \$TIME2 - \$TIME)
     echo Time: \$ELAPSED

_______________________________________________
Trisquel-devel mailing list
[email protected]
http://listas.trisquel.info/mailman/listinfo/trisquel-devel

Reply via email to