Update of /cvsroot/devil-linux/build
In directory sc8-pr-cvs1:/tmp/cvs-serv29840
Modified Files:
update_src
Log Message:
added variable vor version number
added ftp server heiko@home
Index: update_src
===================================================================
RCS file: /cvsroot/devil-linux/build/update_src,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- update_src 7 Oct 2003 00:14:37 -0000 1.15
+++ update_src 7 Oct 2003 22:39:03 -0000 1.16
@@ -4,6 +4,8 @@
# then use the main server to just get the latest greatest stuff
#
+VERSION="1.0"
+
# the array holding the menu items
declare -a menu
# the array holding the ftp servers name
@@ -13,19 +15,23 @@
menu[1]="Devil-Linux FTP-Server Frankfurt (M)/Germany"
ftps[1]="ftp.devil-linux.org"
-ftpd[1]="/pub/devel/sources/1.0/"
+ftpd[1]="/pub/devel/sources/$VERSION/"
menu[2]="University of Technology Lille/France"
ftps[2]="ftp.univ-lille1.fr"
-ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/1.0/"
+ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/$VERSION/"
menu[3]="University of Technology Graz/Austria - official mirror"
ftps[3]="ftp.tu-graz.ac.at"
-ftpd[3]="/pub/mirror/devil-linux/devel/sources/1.0/"
+ftpd[3]="/pub/mirror/devil-linux/devel/sources/$VERSION/"
menu[4]="University of Technology Graz/Austria - internal mirror"
ftps[4]="ftp.vc-graz.ac.at"
-ftpd[4]="/pub/mirror/devil-linux/devel/sources/1.0/"
+ftpd[4]="/pub/mirror/devil-linux/devel/sources/$VERSION/"
+
+menu[5]="Heiko @ home - internal mirror"
+ftps[5]="192.168.0.2"
+ftpd[5]="/ftp.devil-linux.org/devel/sources/$VERSION/"
function menu () {
local menuitems=${#menu[@]} # number of menuitems
|