From: <bl...@us...> - 2004-01-14 18:32:39
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv2860 Modified Files: update_src Log Message: Cosmetic changes (before Friedl uploads and I have to do them over AGAIN :) Index: update_src =================================================================== RCS file: /cvsroot/devil-linux/build/update_src,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- update_src 14 Jan 2004 18:10:25 -0000 1.25 +++ update_src 14 Jan 2004 18:32:36 -0000 1.26 @@ -22,37 +22,37 @@ # the main server -menu[1]="Devil-Linux FTP-Server Frankfurt (M)/Germany" +menu[1]="Devil-Linux main FTP-Server Frankfurt (M)/Germany" ftps[1]="ftp.devil-linux.org" ftpd[1]="/pub/devel/sources/$VERSION/" # the official mirrors -menu[2]="University of Technology Lille/France - official mirror" +menu[2]="University of Technology Lille/France" ftps[2]="ftp.univ-lille1.fr" ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/$VERSION/" -menu[3]="University of Technology Graz/Austria - official mirror" +menu[3]="University of Technology Graz/Austria" ftps[3]="ftp.tu-graz.ac.at" ftpd[3]="/pub/mirror/devil-linux/devel/sources/$VERSION/" -menu[4]="Semmelweis Univ Med School Budapest/Hungary - official mirror" +menu[4]="Semmelweis Univ Med School Budapest/Hungary" ftps[4]="xenia.sote.hu" ftpd[4]="/pub/mirrors/devil-linux/devel/sources/$VERSION/" # the internal mirrors (mostly used by specific developers) -menu[97]="University of Technology Graz/Austria - internal mirror" +menu[97]="University of Technology Graz/Austria" ftps[97]="ftp.vc-graz.ac.at" ftpd[97]="/pub/mirror/devil-linux/devel/sources/$VERSION/" -menu[98]="Heiko @ home - internal mirror" +menu[98]="Heiko @ home" ftps[98]="192.168.0.2" ftpd[98]="/ftp.devil-linux.org/devel/sources/$VERSION/" -menu[99]="BS @ work - internal mirror" +menu[99]="BS @ work" ftps[99]="172.16.2.1" ftpd[99]="/" @@ -65,17 +65,18 @@ while [ $ret -eq 255 ]; do echo - echo "Note: when starting to pull the sources for the first" - echo " time try to use a mirror and then call update_src" - echo " a second time this time using the main server to" - echo " just get the latest source updates" + echo "Note: When downloading the sources for the first time," + echo " use a mirror, then call update_src a second time" + echo " using the main server to get the latest updates." echo - echo "The list of devil linux mirrors:" + echo " Official Devil-Linux download sites:" for ((i=1, j=1; i <= menuitems; i++, j++)); do if [ $i = $j -a "${#menu[$i]}" -eq 0 ]; then let j=$maxindex-$menuitems+$i + echo " Internal mirrors:" fi - echo " ($j) ${menu[$j]}" + [ $j -lt 10 ] && echo -n " " + echo " ($j) ${menu[$j]}" done echo |