X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vbuild-fedora-mirror.sh;h=716b9f3768dc719f0cec52eb6578b860fb957c48;hb=refs%2Fheads%2Flxc_devel;hp=ff724337d2e3a171f5a4b203b1074171e7d78751;hpb=5e6a294fd63cc2ed0c28e59a1a72fe3e2951ae32;p=build.git diff --git a/vbuild-fedora-mirror.sh b/vbuild-fedora-mirror.sh index ff724337..716b9f37 100755 --- a/vbuild-fedora-mirror.sh +++ b/vbuild-fedora-mirror.sh @@ -1,6 +1,5 @@ #!/bin/bash # this can help you create/update your fedora mirror -# $Id$ COMMAND=$(basename $0) LOGDIR=/var/log/fedora-mirroring @@ -14,30 +13,37 @@ skip_core= root=/mirror/ -hozac_url=http://rpm.hozac.com/dhozac/centos/5/vserver +dhozac_url=rsync://rpm.hozac.com/dhozac/centos/ us_fedora_url=rsync://mirrors.kernel.org/fedora us_centos_url=rsync://mirrors.rit.edu/centos us_epel_url=rsync://rsync.gtlib.gatech.edu/fedora-epel -# this one is contaminated with the .~tmp~ thing - -eu_fedora_url=rsync://mirrors.ircam.fr/fedora-linux +# ircam's fedora8 repo has been turned off +#eu_fedora_url=rsync://mirrors.ircam.fr/fedora-linux +#eu_fedora_url=rsync://mirror.ovh.net/download.fedora.redhat.com/linux +eu_fedora_url=rsync://ftp-stud.hs-esslingen.de/fedora/linux eu_centos_url=rsync://mirrors.ircam.fr/CentOS eu_epel_url=rsync://mirrors.ircam.fr/fedora-epel +pl_fedora_url=$eu_fedora_url +pl_centos_url=rsync://ftp.tpnet.pl/centos +pl_epel_url=rsync://ftp.icm.edu.pl/pub/Linux/fedora/linux/epel + jp_fedora_url="jp_fedora_url-needs-to-be-defined" jp_centos_url="jp_centos_url-needs-to-be-defined" jp_epel_url="jp_epel_url-needs-to-be-defined" -default_distroname="centos5" -all_distronames="f8 f10 centos5.2 epel5" +default_distroname="centos5.6" +all_distronames="f14 f16 centos5.6 epel5 epel6" default_arch="i386" all_archs="i386 x86_64" case $(hostname) in - *.fr|*.de|*.uk) + blitz*|*.fr|*.de|*.uk) fedora_url=$eu_fedora_url ; centos_url=$eu_centos_url ; epel_url=$eu_epel_url ;; + *.pl) + fedora_url=$pl_fedora_url ; centos_url=$pl_centos_url ; epel_url=$pl_epel_url ;; *.jp) fedora_url=$jp_fedora_url ; centos_url=$jp_centos_url ; epel_url=$jp_epel_url ;; *) @@ -48,8 +54,6 @@ function mirror_distro_arch () { distroname=$1; shift arch=$1; shift - LFTP=0 - distroname=$(echo $distroname | tr '[A-Z]' '[a-z]') case $distroname in fc*[1-6]) @@ -57,7 +61,7 @@ function mirror_distro_arch () { distro="Fedora Core" rsyncurl=$fedora_url ;; - f*[7-9]|f10) + f*[7-9]|f1?) distroindex=$(echo $distroname | sed -e "s,f,,g") distro="Fedora" rsyncurl=$fedora_url @@ -67,15 +71,15 @@ function mirror_distro_arch () { distro="CentOS" rsyncurl=$centos_url ;; - epel5) - distroindex=5 + epel[5-6]) + distroindex=$(echo $distroname | sed -e "s,epel,,g") distro=epel rsyncurl=$epel_url ;; - hozac) + dhozac) distroindex=5 - distro="hozac" - rsyncurl=$hozac_url + distro="dhozac" + rsyncurl=$dhozac_url ;; *) echo "WARNING -- Unknown distribution $distroname -- skipped" @@ -85,11 +89,9 @@ function mirror_distro_arch () { excludelist="debug/ iso/ ppc/ source/" options="--archive --compress --delete --delete-excluded $dry_run $verbose" - lftp_options="--delete $dry_run $verbose" [ -n "$(rsync --help | grep no-motd)" ] && options="$options --no-motd" for e in $excludelist; do options="$options --exclude $e" - lftp_options="$lftp_options --exclude $e" done echo ">>>>>>>>>>>>>>>>>>>> root=$root distroname=$distroname arch=$arch rsyncurl=$rsyncurl" @@ -105,7 +107,7 @@ function mirror_distro_arch () { paths="$paths core/updates/$distroindex/$arch/ extras/$distroindex/$arch/" RES=0 ;; - 7|8|9|10) + 7|8|9|1?) [ -z "$skip_core" ] && paths="releases/$distroindex/Everything/$arch/os/" paths="$paths updates/$distroindex/$arch/" # f8 and f9 have the additional newkey repo @@ -131,7 +133,7 @@ function mirror_distro_arch () { epel*) case $distroindex in - 5) + 5|6) paths="$paths $distroindex/$arch/" RES=0 ;; @@ -139,13 +141,12 @@ function mirror_distro_arch () { localpath=epel ;; - hozac*) + dhozac*) case $distroindex in 5) # leave off trailing '/' - paths="$paths $arch" + paths="$paths $distroindex/vserver/$arch" RES=0 - LFTP=1 ;; esac localpath=dhozac @@ -159,11 +160,7 @@ function mirror_distro_arch () { for repopath in $paths; do echo "===== $distro -> $distroindex $repopath" [ -z "$dry_run" ] && mkdir -p ${root}/${localpath}/${repopath} - if [ "$LFTP" = 1 ]; then - command="lftp -c mirror $lftp_options ${rsyncurl}/${repopath} ${root}/${localpath}/${repopath}" - else - command="rsync $options ${rsyncurl}/${repopath} ${root}/${localpath}/${repopath}" - fi + command="rsync $options ${rsyncurl}/${repopath} ${root}/${localpath}/${repopath}" echo $command $command done @@ -183,6 +180,7 @@ function usage () { echo " -v : verbose" echo " -l : turns on autologging in $LOGDIR" echo " -c : skips core repository" + echo " -C : force syncing core repository (default)" echo " -r root (default is $root)" echo " -u rsyncurl for fedora (default is $fedora_url)" echo " -U rsyncurl for centos (default is $centos_url)" @@ -210,12 +208,13 @@ function run () { function main () { distronames="" archs="" - while getopts "nvlcr:u:U:E:sejf:Fa:Ah" opt ; do + while getopts "nvlcCr:u:U:E:sejf:Fa:Ah" opt ; do case $opt in n) dry_run=--dry-run ;; v) verbose=--verbose ;; l) log=true ;; c) skip_core=true ;; + C) skip_core= ;; r) root=$OPTARG ;; u) fedora_url=$OPTARG ;; U) centos_url=$OPTARG ;; @@ -230,6 +229,8 @@ function main () { h|*) usage ;; esac done + shift $(($OPTIND-1)) + [[ -n "$@" ]] && usage [ -z "$distronames" ] && distronames=$default_distroname [ -z "$archs" ] && archs=$default_arch