chiark / gitweb /
ubuntu-daily: default to oneiric
[bin.git] / ubuntu-daily
index d1143228264790d474bf73a7a1b9779620ef5572..9322569ab335c8178efcea560ec5faa7c9390037 100755 (executable)
@@ -1,10 +1,11 @@
 #! /bin/sh
 
 PROJECT=
-CURRENT_DIST=maverick
+CURRENT_DIST=oneiric
 DIST="$CURRENT_DIST"
-BASE=antimony:cdimage/www/full
+BASE=cdimage.ubuntu.com::cdimage
 RSYNC=false
+HTTP=false
 
 usage () {
        cat <<EOF
@@ -12,13 +13,14 @@ Usage: $0 [options] image_type architecture
 
 Options:
   -f|--flavour FLAVOUR         Flavour (default: ubuntu).
-  -d|--dist DIST               Distribution (default: maverick).
-  -a|--anonymous               Don't use privileged access.
+  -d|--dist DIST               Distribution (default: oneiric).
+  -a|--authenticated           Use privileged access.
   -r|--rsync                   Force rsync.
+  -h|--http                    Force HTTP only (no reuse).
 EOF
 }
 
-eval set -- "$(getopt -o f:d:ar -l help,flavour:,dist:,anonymous,rsync -- "$@")" || { usage >&2; exit 2; }
+eval set -- "$(getopt -o f:d:arh -l help,flavour:,dist:,authenticated,rsync,http -- "$@")" || { usage >&2; exit 2; }
 while :; do
        case $1 in
                --help)
@@ -36,27 +38,28 @@ while :; do
                        DIST="$2"
                        shift 2
                        ;;
-               -a|--anonymous)
-                       BASE=cdimage.ubuntu.com::cdimage
+               -a|--authenticated)
+                       BASE=antimony:cdimage/www/full
                        shift
                        ;;
                -r|--rsync)
                        RSYNC=:
                        shift
                        ;;
+               -h|--http)
+                       HTTP=:
+                       shift
+                       ;;
                --)     shift; break ;;
                *)      usage >&2; exit 2;
        esac
 done
 
-case $2 in
-       hppa*|ia64*|lpia*|powerpc*|sparc*)
-               PREFIX=ports/
-               ;;
-       *)
-               PREFIX=
-               ;;
-esac
+if $HTTP; then
+       BASE="http://cdimage.ubuntu.com"
+fi
+
+PREFIX=
 if [ "$DIST" != "$CURRENT_DIST" ]; then
        PREFIX="$DIST/$PREFIX"
 fi
@@ -94,7 +97,7 @@ esac
 case $1 in
        install|alternate|server|addon|serveraddon|dvd) ;;
        *)
-               RSYNC=:
+               $HTTP || RSYNC=:
                ;;
 esac
 
@@ -103,6 +106,8 @@ REMOTE="$BASE/${PROJECT:+$PROJECT/}$IMAGE_TYPE/current/$DIST-$1-$2"
 
 if $RSYNC; then
        ionice -c2 -n7 rsync -avP "$REMOTE.$EXTENSION" "$LOCAL.$EXTENSION"
+elif $HTTP; then
+       wget -O "$LOCAL.$EXTENSION" "$REMOTE.$EXTENSION"
 else
        rsync -avP "$REMOTE.jigdo" "$LOCAL.jigdo"
        if [ "$PROJECT" ]; then