[Qa-jenkins-scm] [jenkins.debian.net] 02/02: reproducible pbuilder hooks: use BUILDDIR, to comply with pbuilder 0.216

Holger Levsen holger at moszumanska.debian.org
Sun Oct 18 17:39:27 UTC 2015


This is an automated email from the git hooks/post-receive script.

holger pushed a commit to branch master
in repository jenkins.debian.net.

commit cea92184c20796475f80a7a0c113bee9d24e9cf7
Author: Mattia Rizzolo <mattia at mapreri.org>
Date:   Sat Oct 17 17:49:53 2015 +0000

    reproducible pbuilder hooks:  use BUILDDIR, to comply with pbuilder 0.216
---
 hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup     |  8 +++++---
 hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 .../cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup  |  8 +++++---
 .../cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup  |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup      |  8 +++++---
 hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup      |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 hosts/jenkins/etc/pbuilder/rebuild-hooks/B01_cleanup           |  6 +++---
 hosts/jenkins/etc/pbuilder/rebuild-hooks/C01_cleanup           |  6 +++---
 .../jenkins/etc/pbuilder/rebuild-hooks/D01_modify_environment  |  8 ++++----
 .../etc/pbuilder/rebuild-hooks/B01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/C01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 .../etc/pbuilder/rebuild-hooks/B01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/C01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 .../etc/pbuilder/rebuild-hooks/B01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/C01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 .../etc/pbuilder/rebuild-hooks/B01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/C01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 .../etc/pbuilder/rebuild-hooks/B01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/C01_cleanup                     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup     |  8 +++++---
 hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup     |  8 +++++---
 .../etc/pbuilder/rebuild-hooks/D01_modify_environment          | 10 ++++++----
 30 files changed, 154 insertions(+), 100 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 c60a991..bbea69f 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
diff --git a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/bpi0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/cbxi4pro0-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
diff --git a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/cbxi4pro0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/hb0-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
diff --git a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
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 52862f1..dda7694 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,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/jenkins/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/jenkins/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..601d4b1 100755
--- a/hosts/jenkins/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/jenkins/etc/pbuilder/rebuild-hooks/B01_cleanup
@@ -8,8 +8,8 @@ set -e
 # 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
diff --git a/hosts/jenkins/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/jenkins/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..7552e99 100755
--- a/hosts/jenkins/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/jenkins/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -12,8 +12,8 @@ echo
 # 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
diff --git a/hosts/jenkins/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/jenkins/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..318390c 100755
--- a/hosts/jenkins/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/jenkins/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -17,11 +17,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving "$BUILDDIR" to /tmp/disorderfs and mounting this as "$BUILDDIR" via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/profitbricks-build1-amd64/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
diff --git a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/profitbricks-build1-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/profitbricks-build2-amd64/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
diff --git a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/profitbricks-build2-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/profitbricks-build4-amd64/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
diff --git a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/profitbricks-build4-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/profitbricks-build5-amd64/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
diff --git a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/profitbricks-build5-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
diff --git a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
index c60a991..bbea69f 100755
--- a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/B01_cleanup
+++ b/hosts/profitbricks-build6-amd64/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
diff --git a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/profitbricks-build6-amd64/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."
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 c60a991..bbea69f 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
diff --git a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup b/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
index 6ec0982..73f4083 100755
--- a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
+++ b/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup
@@ -2,6 +2,8 @@
 
 set -e
 
+BUILDDIR="${BUILDDIR:-/tmp/buildd}"
+
 echo "debug output: disk usage on $(hostname) at $(date -u)"
 df -h
 echo
@@ -12,8 +14,8 @@ echo
 # 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
diff --git a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment b/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
index 52862f1..dda7694 100755
--- a/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
+++ b/hosts/wbq0-armhf-rb/etc/pbuilder/rebuild-hooks/D01_modify_environment
@@ -2,6 +2,8 @@
 
 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
 
@@ -17,11 +19,11 @@ exit 0
 
 # use disorderfs
 if [ -x /usr/bin/disorderfs ] ; then
-	echo -n "Moving /tmp/buildd to /tmp/disorderfs and mounting this as /tmp/buildd via the fuse disorderfs…"
+	echo -n "Moving $BUILDDIR to /tmp/disorderfs and mounting this as $BUILDDIR via the fuse disorderfs…"
 	mknod -m 666 /dev/fuse c 10 229
-	mv /tmp/buildd /tmp/disorderfs
-	mkdir /tmp/buildd
-	disorderfs --multi-user=yes /tmp/disorderfs /tmp/buildd
+	mv "$BUILDDIR" /tmp/disorderfs
+	mkdir "$BUILDDIR"
+	disorderfs --multi-user=yes /tmp/disorderfs "$BUILDDIR"
 	echo " done."
 else
 	echo "Warning: disorderfs not available."

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git



More information about the Qa-jenkins-scm mailing list