diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 14:18:01 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 14:18:01 +0100 |
commit | 8685feaaeada1f39ff07f0745251f9d134518b59 (patch) | |
tree | 6366a8a38581c66f53ba62f3c5e9084330c114b1 | |
parent | 7a488ab89967436e4c58363b36c9e06bff94b080 (diff) | |
download | jenkins.debian.net-8685feaaeada1f39ff07f0745251f9d134518b59.tar.xz |
temp. use ftp2.de.d.o while ftp.de is down
-rwxr-xr-x | bin/common-functions.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index fc276c0d..a6210537 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -53,7 +53,7 @@ else export LC_ALL=C fi if [ -z "$MIRROR" ]; then - export MIRROR=http://ftp.de.debian.org/debian + export MIRROR=http://ftp2.de.debian.org/debian fi if [ -z "$http_proxy" ]; then export http_proxy="http://localhost:3128" diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 0a2139e7..58253c69 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -43,7 +43,7 @@ def call_apt_update(suite): def update_sources_tables(suite): # download the sources file for this suite - mirror = 'http://ftp.de.debian.org/debian' + mirror = 'http://ftp2.de.debian.org/debian' remotefile = mirror + '/dists/' + suite + '/main/source/Sources.gz' log.info('Downloading sources file for ' + suite + ': ' + remotefile) sources = gzip.decompress(urlopen(remotefile).read()).decode('utf8') |