Magellan Linux

Diff of /trunk/mage/usr/lib/mage/mage4.functions.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1292 by niro, Thu May 12 21:29:31 2011 UTC revision 1293 by niro, Fri May 27 12:56:38 2011 UTC
# Line 1379  syncmage_tarball() Line 1379  syncmage_tarball()
1379   local mirr mymirr   local mirr mymirr
1380   local opt   local opt
1381   local tar_opts   local tar_opts
1382     local wget_opts
1383    
1384   # try to get the md5 marked as latest on the server   # try to get the md5 marked as latest on the server
1385   latest_md5="mage-latest.md5"   latest_md5="mage-latest.md5"
# Line 1386  syncmage_tarball() Line 1387  syncmage_tarball()
1387   # try to get the tarball marked as latest on the server   # try to get the tarball marked as latest on the server
1388   latest_tarball="mage-latest.tar.bz2"   latest_tarball="mage-latest.tar.bz2"
1389    
1390     # filter wget command if busybox was found
1391     wget_opts="$(busybox_filter_wget_options ${WGET_FETCH_OPTIONS})"
1392    
1393   for mirr in ${MIRRORS}   for mirr in ${MIRRORS}
1394   do   do
1395   # path without distribution   # path without distribution
# Line 1395  syncmage_tarball() Line 1399  syncmage_tarball()
1399   echo "fetching latest md5 from ${mymirr} ..."   echo "fetching latest md5 from ${mymirr} ..."
1400   [[ ${VERBOSE} = off ]] && opt="--quiet"   [[ ${VERBOSE} = off ]] && opt="--quiet"
1401   wget \   wget \
1402   ${WGET_FETCH_OPTIONS} \   ${wget_opts} \
1403   --directory-prefix=${temp} \   --directory-prefix=${temp} \
1404   ${opt} ${mymirr}/rsync/tarballs/${latest_md5}   ${opt} ${mymirr}/rsync/tarballs/${latest_md5}
1405    
1406   echo -ne "${COLBLUE} --- ${COLDEFAULT}"   echo -ne "${COLBLUE} --- ${COLDEFAULT}"
1407   echo "fetching latest tarball from ${mymirr} ..."   echo "fetching latest tarball from ${mymirr} ..."
1408   wget \   wget \
1409   ${WGET_FETCH_OPTIONS} \   ${wget_opts} \
1410   --directory-prefix=${temp} \   --directory-prefix=${temp} \
1411   ${opt} ${mymirr}/rsync/tarballs/${latest_tarball}   ${opt} ${mymirr}/rsync/tarballs/${latest_tarball}
1412   if [[ $? = 0 ]]   if [[ $? = 0 ]]

Legend:
Removed from v.1292  
changed lines
  Added in v.1293