diff options
author | Colin Watson <cjwatson@debian.org> | 2009-09-17 12:04:51 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-09-17 12:04:51 +0000 |
commit | 38668c942932e21404e2288c3feb6138ec606553 (patch) | |
tree | 7a8ac57b99ff5b9607fd7596ca0c31d06898625b | |
parent | 87730b5bd919f87824d3878d5b4fedde60a069d7 (diff) | |
download | debootstrap-38668c942932e21404e2288c3feb6138ec606553.tar.gz |
Use ports.ubuntu.com as default mirror on sparc for Ubuntu hardy and
beyond (LP: #431145).
r60789
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | scripts/ubuntu/gutsy | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 38a00ec..a2b0875 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ debootstrap (1.0.16) UNRELEASED; urgency=low required (closes: #487908). * Upgrade to debhelper v7. (Override rules get pretty hairy for this package, so I haven't switched to dh(1).) + * Use ports.ubuntu.com as default mirror on sparc for Ubuntu hardy and + beyond (LP: #431145). [ Frans Pop ] * Makefile: remove unused ARCH variable. diff --git a/scripts/ubuntu/gutsy b/scripts/ubuntu/gutsy index 2331622..791a7b6 100644 --- a/scripts/ubuntu/gutsy +++ b/scripts/ubuntu/gutsy @@ -1,7 +1,17 @@ case $ARCH in - amd64|i386|sparc) + amd64|i386) default_mirror http://archive.ubuntu.com/ubuntu ;; + sparc) + case $SUITE in + gutsy) + default_mirror http://archive.ubuntu.com/ubuntu + ;; + *) + default_mirror http://ports.ubuntu.com/ubuntu-ports + ;; + esac + ;; *) default_mirror http://ports.ubuntu.com/ubuntu-ports ;; |