diff options
author | Loïc Minier <lool@dooz.org> | 2010-02-06 14:45:14 +0100 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2010-02-06 14:45:14 +0100 |
commit | 178a5f43432de53d20e1fb6a6bde50b4d6d1315a (patch) | |
tree | fa9c9a945120d64402535dd77a5a9aba4eb9e788 /pbuilder-apt-config | |
parent | c14c8a58506a26d0478cd9e395990a5e5e3c3714 (diff) | |
download | pbuilder-178a5f43432de53d20e1fb6a6bde50b4d6d1315a.tar pbuilder-178a5f43432de53d20e1fb6a6bde50b4d6d1315a.tar.gz |
Sort alphabetically
Diffstat (limited to 'pbuilder-apt-config')
-rwxr-xr-x | pbuilder-apt-config | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pbuilder-apt-config b/pbuilder-apt-config index e59ce13..5e2b491 100755 --- a/pbuilder-apt-config +++ b/pbuilder-apt-config @@ -62,9 +62,6 @@ guess_dist_arch_archive() { buzz|rex|bo|hamm|slink|potato|woody|sarge|etch|lenny|squeeze) echo "debian-archive" ;; - warty|hoary|breezy|edgy|feisty|gutsy) - echo "ubuntu-old" - ;; dapper|hardy|intrepid|jaunty|karmic|lucid) case "$arch" in amd64|i386) @@ -78,6 +75,9 @@ guess_dist_arch_archive() { ;; esac ;; + warty|hoary|breezy|edgy|feisty|gutsy) + echo "ubuntu-old" + ;; *) die "Unknown archive for dist=$dist" ;; @@ -125,6 +125,12 @@ builtin_mirror_map() { debian-archive) echo "http://archive.debian.org/debian/" ;; + debian-security) + echo "http://security.debian.org/" + ;; + debian-volatile) + echo "http://volatile.debian.org/debian-volatile/" + ;; ppa:*) people_ppa="${archive#ppa:}" case "$people_ppa" in @@ -145,12 +151,6 @@ builtin_mirror_map() { ubuntu-ports) echo "http://ports.ubuntu.com/ubuntu-ports/" ;; - debian-security) - echo "http://security.debian.org/" - ;; - debian-volatile) - echo "http://volatile.debian.org/debian-volatile/" - ;; *) die "Unknown mirror for archive=$archive" ;; |