diff options
Diffstat (limited to 'hosts/jenkins')
-rw-r--r-- | hosts/jenkins/etc/pbuilderrc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/jenkins/etc/pbuilderrc b/hosts/jenkins/etc/pbuilderrc index 6812ce26..41aedae5 100644 --- a/hosts/jenkins/etc/pbuilderrc +++ b/hosts/jenkins/etc/pbuilderrc @@ -4,7 +4,11 @@ # the default template # # read pbuilderrc.5 document for notes on specific options. -MIRRORSITE=http://ftp.de.debian.org/debian/ +case $HOSTNAME in + jenkins) MIRRORSITE=http://ftp.de.debian.org/debian ;; + bpi0|cbxi4pro0|hb0|wbq0) MIRRORSITE=http://ftp.us.debian.org/debian ;; + *) echo "unsupported host, exiting." ; exit 1 ;; +esac EXTRAPACKAGES="fakeroot" APTCACHE="" COMPRESSPROG="pigz" |