From: Colin Watson Date: Thu, 18 Nov 2010 12:51:01 +0000 (+0000) Subject: ubuntu-daily: flip -a semantics to mean --authenticated, not --anonymous X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?p=bin.git;a=commitdiff_plain;h=e470a222375a6f1b03b3bb72d9b2b994da8de8bb ubuntu-daily: flip -a semantics to mean --authenticated, not --anonymous --- diff --git a/ubuntu-daily b/ubuntu-daily index 9a41f4c..cec0131 100755 --- a/ubuntu-daily +++ b/ubuntu-daily @@ -3,7 +3,7 @@ PROJECT= CURRENT_DIST=natty DIST="$CURRENT_DIST" -BASE=antimony:cdimage/www/full +BASE=cdimage.ubuntu.com::cdimage RSYNC=false HTTP=false @@ -14,13 +14,13 @@ Usage: $0 [options] image_type architecture Options: -f|--flavour FLAVOUR Flavour (default: ubuntu). -d|--dist DIST Distribution (default: natty). - -a|--anonymous Don't use privileged access. + -a|--authenticated Use privileged access. -r|--rsync Force rsync. -h|--http Force HTTP only (no reuse). EOF } -eval set -- "$(getopt -o f:d:arh -l help,flavour:,dist:,anonymous,rsync,http -- "$@")" || { 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) @@ -38,8 +38,8 @@ while :; do DIST="$2" shift 2 ;; - -a|--anonymous) - BASE=cdimage.ubuntu.com::cdimage + -a|--authenticated) + BASE=antimony:cdimage/www/full shift ;; -r|--rsync)