summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-06-16 15:04:56 +0200
committerErich Eckner <git@eckner.net>2019-12-27 21:37:14 +0100
commit28fcc1eea750c5664a2c075a0068fe9d379b8b7d (patch)
tree13ef03ece8d400ec76129d77964af736d9efb2ed
parent37990ff99f6c909cbf8a96fb353cd639e24f0069 (diff)
downloaddevtools32-28fcc1eea750c5664a2c075a0068fe9d379b8b7d.tar.xz
archbuild.in: umount -l left-over mounts inside the to-be-deleted chrootv20191227
-rw-r--r--archbuild.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/archbuild.in b/archbuild.in
index 409bf97..971b3c3 100644
--- a/archbuild.in
+++ b/archbuild.in
@@ -76,6 +76,12 @@ if ${clean_first} || [[ ! -d "${chroots}/${repo}-${arch}" ]]; then
lock 9 "$copy.lock" "Locking chroot copy '%s'" "$copy"
subvolume_delete_recursive "${copy}"
+ find "${copy}" \
+ -mindepth 1 \
+ -type d \
+ -exec mountpoint -q {} \; \
+ -prune \
+ -exec umount -l {} \;
rm -rf --one-file-system "${copy}"
done
lock_close 9