diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-04 14:13:58 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-04 14:13:58 +0200 |
commit | 9c4de9ec35d6061113b08206d74a3425d0f01b2d (patch) | |
tree | af063181eabe5bb7203af127d066ed80bbe59542 /hosts/hb0-armhf-rb | |
parent | 005ed7eeea40a04ef7c8fccd2e51c0fe69bbaed8 (diff) | |
download | jenkins.debian.net-9c4de9ec35d6061113b08206d74a3425d0f01b2d.tar.xz |
reproducible: define MIRRORSITE dynamically
Diffstat (limited to 'hosts/hb0-armhf-rb')
-rw-r--r-- | hosts/hb0-armhf-rb/etc/pbuilderrc | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/hosts/hb0-armhf-rb/etc/pbuilderrc b/hosts/hb0-armhf-rb/etc/pbuilderrc new file mode 100644 index 00000000..41aedae5 --- /dev/null +++ b/hosts/hb0-armhf-rb/etc/pbuilderrc @@ -0,0 +1,30 @@ +# this is your configuration file for pbuilder. +# the file in /usr/share/pbuilder/pbuilderrc is the default template. +# /etc/pbuilderrc is the one meant for overwriting defaults in +# the default template +# +# read pbuilderrc.5 document for notes on specific options. +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" +# unset proxy, see #780587 +unset http_proxy +export -n http_proxy +# /sys and /proc were added as workarounds for #773767 +# there are software wanting /dev/shm writable, so give them so. There are tons +# of bug shm related in pbuilder, that's just a workaround for all of them. +# /run/shm is already mounted as a tmpfs by default. +BINDMOUNTS="$BINDMOUNTS /sys /dev/shm" +# set PATH to predictable values, see #780729 and #780725 +PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games" + +# used on reproducible builds +if [ "$(readlink /proc/1/ns/uts)" != "$(readlink /proc/self/ns/uts)" ]; then + PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/i/capture/the/path" +fi + |