diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-22 23:22:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-22 23:22:48 +0200 |
commit | 18cb1810b5b526daf5b2440a5a966fcecec9575b (patch) | |
tree | 153af7f6e90319e721fdd4e1386fdd00530ce730 /hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks | |
parent | 6f68897c92a9d08ea69ad8903193df83e7476955 (diff) | |
download | jenkins.debian.net-18cb1810b5b526daf5b2440a5a966fcecec9575b.tar.xz |
fixup 32a4d96: reproducible: enable disorderfs on hb0
Diffstat (limited to 'hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks')
-rwxr-xr-x | hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup | 13 | ||||
-rwxr-xr-x | hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup new file mode 100755 index 00000000..36a19bc9 --- /dev/null +++ b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/B01_cleanup @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# 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 + fusermount -u /tmp/buildd + rmdir /tmp/buildd + mv /tmp/disorderfs /tmp/buildd +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 new file mode 100755 index 00000000..36a19bc9 --- /dev/null +++ b/hosts/hb0-armhf-rb/etc/pbuilder/rebuild-hooks/C01_cleanup @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +# 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 + fusermount -u /tmp/buildd + rmdir /tmp/buildd + mv /tmp/disorderfs /tmp/buildd +fi |