Update master of plcapi.
[build.git] / vbuild-fedora-mirror.sh
index 73e1932..716b9f3 100755 (executable)
@@ -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,28 +13,37 @@ skip_core=
 root=/mirror/
 
 
+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 ;;
     *)
@@ -53,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
@@ -63,11 +71,16 @@ 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
            ;;
+       dhozac)
+           distroindex=5
+           distro="dhozac"
+           rsyncurl=$dhozac_url
+           ;;
        *)
            echo "WARNING -- Unknown distribution $distroname -- skipped"
            return 1
@@ -94,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
@@ -120,7 +133,7 @@ function mirror_distro_arch () {
 
        epel*)
            case $distroindex in
-               5)
+               5|6)
                    paths="$paths $distroindex/$arch/"
                    RES=0
                    ;;
@@ -128,6 +141,17 @@ function mirror_distro_arch () {
            localpath=epel
            ;;
 
+       dhozac*)
+           case $distroindex in
+               5)
+                   # leave off trailing '/'
+                   paths="$paths $distroindex/vserver/$arch"
+                   RES=0
+                   ;;
+           esac
+           localpath=dhozac
+           ;;
+
     esac
 
     if [ "$RES" = 1 ] ; then
@@ -156,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)"
@@ -183,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 ;;
@@ -203,6 +229,8 @@ function main () {
            h|*) usage ;;
        esac
     done
+    shift $(($OPTIND-1))
+    [[ -n "$@" ]] && usage
     [ -z "$distronames" ] && distronames=$default_distroname
     [ -z "$archs" ] && archs=$default_arch