diff options
Diffstat (limited to 'hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup')
-rwxr-xr-x | hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup index c60a991c..bbea69fa 100755 --- a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup +++ b/hosts/wbq0-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 |