diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-03-25 14:04:17 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-03-25 14:04:17 -0400 |
commit | d4a521c6aadfb2b86d8a278d8d850050d14315ee (patch) | |
tree | d33fce16704be09d60892a3c33764912ce0e4c8d /hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment | |
parent | c4e034a518e8d034a2fa5d9127579d774e8f6e79 (diff) | |
download | jenkins.debian.net-d4a521c6aadfb2b86d8a278d8d850050d14315ee.tar.xz |
reproducible debian: pb-build2+6-amd64 have been reinstalled and renamed to pb-build2+6-i386
Diffstat (limited to 'hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment')
-rwxr-xr-x | hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment new file mode 100755 index 00000000..62ae3d03 --- /dev/null +++ b/hosts/profitbricks-build2-i386/etc/pbuilder/rebuild-hooks/D01_modify_environment @@ -0,0 +1,34 @@ +#!/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" + +echo "I: Changing /bin/sh to bash" >&2 +echo "dash dash/sh boolean false" | debconf-set-selections +DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash + +# 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 |