diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-10-17 17:49:53 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-18 19:38:35 +0200 |
commit | cea92184c20796475f80a7a0c113bee9d24e9cf7 (patch) | |
tree | 9c3e5e63968f3dd2eeba42fa94b26451d0c159e3 /hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup | |
parent | 759e58ba54cfeba14ee305fc8e91cadb361fed93 (diff) | |
download | jenkins.debian.net-cea92184c20796475f80a7a0c113bee9d24e9cf7.tar.xz |
reproducible pbuilder hooks: use BUILDDIR, to comply with pbuilder 0.216
Diffstat (limited to 'hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup')
-rwxr-xr-x | hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup index c60a991c..bbea69fa 100755 --- a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup +++ b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup @@ -2,14 +2,16 @@ 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 # cease using disorderfs if [ -d /tmp/disorderfs ] ; then echo -n "Unmounting /tmp/disorderfs…" - fusermount -u /tmp/buildd - rmdir /tmp/buildd - mv /tmp/disorderfs /tmp/buildd + fusermount -u "$BUILDDIR" + rmdir "$BUILDDIR" + mv /tmp/disorderfs "$BUILDDIR" echo " done." fi |