From 005ed7eeea40a04ef7c8fccd2e51c0fe69bbaed8 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 4 Aug 2015 14:01:22 +0200 Subject: reproducible: define mirror+proxy depending on the hostname --- bin/common-functions.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'bin/common-functions.sh') diff --git a/bin/common-functions.sh b/bin/common-functions.sh index 3e081561..bde8f256 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -53,10 +53,18 @@ else export LC_ALL=C.UTF-8 fi if [ -z "$MIRROR" ]; then - export MIRROR=http://ftp.de.debian.org/debian + case $HOSTNAME in + jenkins) export MIRROR=http://ftp.de.debian.org/debian ;; + bpi0|cbxi4pro0|hb0|wbq0) export MIRROR=http://ftp.de.debian.org/debian ;; + *) echo "unsupported host, exiting." ; exit 1 ;; + esac fi if [ -z "$http_proxy" ]; then - export http_proxy="http://localhost:3128" + case $HOSTNAME in + jenkins) export http_proxy="http://localhost:3128" ;; + bpi0|cbxi4pro0|hb0|wbq0) export http_proxy="http://10.0.0.15:8000/" ;; + *) echo "unsupported host, exiting." ; exit 1 ;; + esac fi if [ -z "$CHROOT_BASE" ]; then export CHROOT_BASE=/chroots -- cgit v1.2.3-70-g09d2