diff options
author | Erich Eckner <git@eckner.net> | 2019-06-16 15:04:56 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-09-13 09:22:11 +0200 |
commit | c6d4dce1ff024a3c2d943af017ae933f8010bbeb (patch) | |
tree | a88fd18d356bc47c91480eca69f5c6b18cb8d9ee | |
parent | 81923f50ac597ddbdacc221516d80a161b20e77d (diff) | |
download | devtools32-c6d4dce1ff024a3c2d943af017ae933f8010bbeb.tar.xz |
archbuild.in: umount -l left-over mounts inside the to-be-deleted chrootv20190912
-rw-r--r-- | archbuild.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archbuild.in b/archbuild.in index aed79f3..a6884a6 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 |