Changeset d591ee5


Ignore:
Timestamp:
03/22/2006 02:15:22 PM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
ebba33f
Parents:
6eef5ef
Message:

Change package download functions back to HTTP until the FTP mirror rotation problems solved

Location:
common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • common/common-functions

    r6eef5ef rd591ee5  
    784784  if [ ! -f $2 ] ; then
    785785    case $DL in
    786       wget )  wget --passive $FTP/$DIR/$2            ;;
     786      wgetFTP )  wget --passive $FTP/$DIR/$2            ;;
     787      wget )  wget $HTTP/$DIR/$2            ;;
    787788      curl )  `curl -# $FTP/$DIR/$2 -o $2`     ;;
    788789      * )     echo "$DL not supported at this time."  ;;
     
    790791  elif ! echo "$MD5" | md5sum -c - >/dev/null 2>/dev/null ; then
    791792    case $DL in
    792       wget )  wget --passive -c $FTP/$DIR/$2         ;;
     793      wgetFTP )  wget --passive -c $FTP/$DIR/$2         ;;
     794      wget )   wget -c $HTTP/$DIR/$2            ;;
    793795      curl )  `curl -# -C - $FTP/$DIR/$2 -o $2`    ;;
    794796      * )     echo "$DL not supported at this time."  ;;
  • common/config

    r6eef5ef rd591ee5  
    88declare -r SVN="svn://svn.linuxfromscratch.org"
    99declare -r LOG=000-masterscript.log
     10declare -r HTTP=http://ftp.lfs-matrix.net/pub/lfs/conglomeration
    1011
    1112#--- Mount point for the build
Note: See TracChangeset for help on using the changeset viewer.