summaryrefslogtreecommitdiffstats
path: root/hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-11-05 18:43:13 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-05 18:43:13 +0100
commit23567b7cc095d1d6e7f09cbf05ad8c787ac52b4f (patch)
tree9c45aa3da0d394a4465d17e1d02494150ffb98d1 /hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
parent04d82291c355f268c8087c58bb29c87d0a4d4e2a (diff)
downloadjenkins.debian.net-23567b7cc095d1d6e7f09cbf05ad8c787ac52b4f.tar.xz
reproducible Debian: add new amd64 build nodes, pb11 and pb15 - thanks Profitbricks!
Diffstat (limited to 'hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup')
-rwxr-xr-xhosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup17
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
new file mode 100755
index 00000000..bbea69fa
--- /dev/null
+++ b/hosts/profitbricks-build15-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
@@ -0,0 +1,17 @@
+#!/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 -u "$BUILDDIR"
+ rmdir "$BUILDDIR"
+ mv /tmp/disorderfs "$BUILDDIR"
+ echo " done."
+fi