diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-25 13:54:49 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-25 13:54:49 +0100 |
commit | 69f00384710a5d74f86c271ccd5bae682d68b1dd (patch) | |
tree | 73162ffd8079ea68df44898204164973f3b5e2e4 /hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment | |
parent | 19112edef8ecb6e7798cfbf0f463fb936cd86042 (diff) | |
download | jenkins.debian.net-69f00384710a5d74f86c271ccd5bae682d68b1dd.tar.xz |
reproducible: add seventh armhf build node, thanks again to vagrant
Diffstat (limited to 'hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment')
-rwxr-xr-x | hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment new file mode 100755 index 00000000..dda76947 --- /dev/null +++ b/hosts/rpi2b-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment @@ -0,0 +1,30 @@ +#!/bin/sh + +set -e + +BUILDDIR="${BUILDDIR:-/tmp/buildd}" + +# exit if we are in the same UTS namespace as init ( != 2nd build ) +[ "$(readlink /proc/1/ns/uts)" = "$(readlink /proc/self/ns/uts)" ] && exit 0 + +echo "I: Changing host+domainname to test build reproducibility" >&2 +sed -e '/^127.0.0.1/s/$/ i-capture-the-hostname i-capture-the-hostname.i-capture-the-domain/' -i /etc/hosts +hostname i-capture-the-hostname +domainname i-capture-the-domain +echo "I: Adding a custom variable just for the fun of it..." >&2 +export CAPTURE_ENVIRONMENT="I capture the environment" + +# temporarily disable disorderfs as we have problems properly unmounting it +exit 0 + +# use disorderfs +if [ -x /usr/bin/disorderfs ] ; then + echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…" + mknod -m 666 /dev/fuse c 10 229 + mv "$BUILDDIR" /tmp/disorderfs + mkdir "$BUILDDIR" + disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR" + echo " done." +else + echo "Warning: disorderfs not available." +fi |