diff options
Diffstat (limited to 'hosts/odxu4-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup')
-rwxr-xr-x | hosts/odxu4-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/hosts/odxu4-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/odxu4-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup deleted file mode 100755 index 334e03a2..00000000 --- a/hosts/odxu4-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup +++ /dev/null @@ -1,17 +0,0 @@ -#!/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 - -# cease using disorderfs -if [ -d /tmp/disorderfs ] ; then - echo -n "Unmounting /tmp/disorderfs…" - fusermount -z -u "$BUILDDIR" - rmdir "$BUILDDIR" - mv /tmp/disorderfs "$BUILDDIR" - echo " done." -fi |