summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-12-05 23:27:29 +0100
committerHolger Levsen <holger@layer-acht.org>2012-12-05 23:27:29 +0100
commit5e1558ae35d81f023c35c3102db98017aef8c88a (patch)
tree72eb3c380f953da0b50bfd605baf32b566ebc723 /bin
parent95c3f9c338810604eef6f5585bcc8c7c9e6e30ee (diff)
downloadjenkins.debian.net-5e1558ae35d81f023c35c3102db98017aef8c88a.tar.xz
use fuser elsewhere
Diffstat (limited to 'bin')
-rwxr-xr-xbin/d-i_builds.sh2
-rwxr-xr-xbin/housekeeping.sh4
2 files changed, 6 insertions, 0 deletions
diff --git a/bin/d-i_builds.sh b/bin/d-i_builds.sh
index 516f427a..3ad8e02b 100755
--- a/bin/d-i_builds.sh
+++ b/bin/d-i_builds.sh
@@ -36,6 +36,8 @@ export TMPFILE=$(mktemp -u)
export CTMPFILE=$CHROOT_TARGET/$TMPFILE
cleanup_all() {
+ # List the processes using the partition
+ fuser -mv $CHROOT_TARGET
# test if $CHROOT_TARGET starts with /chroots/
if [ "${CHROOT_TARGET:0:9}" != "/chroots/" ] ; then
echo "HALP. CHROOT_TARGET = $CHROOT_TARGET"
diff --git a/bin/housekeeping.sh b/bin/housekeeping.sh
index 47882531..c146b60d 100755
--- a/bin/housekeeping.sh
+++ b/bin/housekeeping.sh
@@ -23,6 +23,7 @@ done
echo
vnstat
+
CHROOT_PATTERN="/chroots/chroot-tests-*"
HOUSE=$(ls $CHROOT_PATTERN 2>/dev/null)
if [ "$HOUSE" != "" ] ; then
@@ -31,6 +32,9 @@ if [ "$HOUSE" != "" ] ; then
echo "Probably manual cleanup needed:"
echo
echo "$ ls -la $CHROOT_PATTERN"
+ # List the processes using the partition
+ echo
+ fuser -mv $CHROOT_TARGET
echo $HOUSE
exit 1
fi