From 32a4d96abb1edabb2dad190b207748cd0e961ee1 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 22 Sep 2015 22:59:45 +0200 Subject: reproducible: enable disorderfs on hb0 --- .../etc/pbuilder/rebuild-hooks/D01_modify_environment | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks') diff --git a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment index d9550045..aed8d9ab 100755 --- a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment +++ b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment @@ -2,11 +2,22 @@ set -e -# exit if we are in the same UTS namespace than init +# 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 hostname to test build reproducibility" >&2 +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" + +# use disorderfs +if [ -x /usr/bin/disorderfs ] ; then + mknod -m 666 /dev/fuse c 10 229 + mv /tmp/buildd /tmp/disorderfs + mkdir /tmp/buildd + disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd +else + echo "Warning: disorderfs not available." +fi -- cgit v1.2.3-54-g00ecf