From f67601cb0ce67ea756445c9030149ac35b03d866 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 29 Apr 2017 14:36:06 -0400 Subject: [PATCH] mk-sbuild, pull-debian-{debdiff,source}: Switch from httpredir.debian.org to deb.debian.org as the default mirror for Debian Signed-off-by: Mattia Rizzolo --- mk-sbuild | 2 +- pull-debian-debdiff | 2 +- ubuntutools/config.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mk-sbuild b/mk-sbuild index e432211..c052837 100755 --- a/mk-sbuild +++ b/mk-sbuild @@ -503,7 +503,7 @@ ubuntu) ;; debian) if [ -z "$DEBOOTSTRAP_MIRROR" ]; then - DEBOOTSTRAP_MIRROR="http://httpredir.debian.org/debian" + DEBOOTSTRAP_MIRROR="http://deb.debian.org/debian" fi if [ -z "$COMPONENTS" ]; then COMPONENTS="main non-free contrib" diff --git a/pull-debian-debdiff b/pull-debian-debdiff index e96cfa5..77819d5 100755 --- a/pull-debian-debdiff +++ b/pull-debian-debdiff @@ -52,7 +52,7 @@ def main(): parser.add_option('-d', '--debian-mirror', metavar='DEBIAN_MIRROR', dest='debian_mirror', help='Preferred Debian mirror ' - '(default: http://httpredir.debian.org/debian)') + '(default: http://deb.debian.org/debian)') parser.add_option('-s', '--debsec-mirror', metavar='DEBSEC_MIRROR', dest='debsec_mirror', help='Preferred Debian Security mirror ' diff --git a/ubuntutools/config.py b/ubuntutools/config.py index fb52065..8365da4 100644 --- a/ubuntutools/config.py +++ b/ubuntutools/config.py @@ -34,7 +34,7 @@ class UDTConfig(object): # These are reqired to be used by at least two scripts. defaults = { 'BUILDER': 'pbuilder', - 'DEBIAN_MIRROR': 'http://httpredir.debian.org/debian', + 'DEBIAN_MIRROR': 'http://deb.debian.org/debian', 'DEBSEC_MIRROR': 'http://security.debian.org', 'LPINSTANCE': 'production', 'MIRROR_FALLBACK': True,