aboutsummaryrefslogtreecommitdiff
path: root/src/property/mount.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-08-21 15:15:39 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-08-22 15:49:27 -0700
commit472e13164a150af1a010179fc94558c6305836d3 (patch)
tree51e32941c420a808788dee4242cde8f701a1460f /src/property/mount.lisp
parent034c65c8063f6e9ca05f73ae854bf567eaada6ae (diff)
downloadconsfigurator-472e13164a150af1a010179fc94558c6305836d3.tar.gz
MOUNT:UNMOUNTED-BELOW-AND-REMOVED: don't unmount DIR itself
If DIR is itself a mount point then previously we would never delete its contents because the unmounting is done first. This meant that when MOUNT:UNMOUNTED-BELOW-AND-REMOVED was used to remove the root filesystem of a container or virtual machine, for example, then whether the contents of the root filesystem was actually deleted depended upon whether DIR happened to be a mount point. This change ensures that the deletion is always done. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/mount.lisp')
-rw-r--r--src/property/mount.lisp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/property/mount.lisp b/src/property/mount.lisp
index c00ed23..f4a06ed 100644
--- a/src/property/mount.lisp
+++ b/src/property/mount.lisp
@@ -76,12 +76,18 @@ this property will empty /dev, breaking all kinds of things."
do (loop while (subpathp (car sorted) next) do (pop sorted))
(mrun "umount" "--recursive" next)))))
-(defproplist unmounted-below-and-removed :posix (dir)
- "Unmount anything mounted at or below DIR and recursively delete dir."
- (:desc #?"${dir} unmounted and removed")
- (:check (not (remote-exists-p dir)))
- (unmounted-below dir)
- (cmd:single "rm" "-rf" dir))
+(defprop unmounted-below-and-removed :posix (dir)
+ "Unmount anything mounted below DIR, recursively delete the contents of DIR,
+and unless DIR is itself a mount point, also remove DIR."
+ (:desc #?"${dir} unmounted below and emptied/removed")
+ (:hostattrs (os:required 'os:linux))
+ (:check (or (not (remote-exists-p dir))
+ (and (mountpointp dir)
+ (null (runlines "find" dir "-not" "-path" dir)))))
+ (:apply (ignoring-hostattrs (unmounted-below dir :and-at nil))
+ (if (mountpointp dir)
+ (empty-remote-directory dir)
+ (delete-remote-trees dir))))
(defun all-mounts (&optional (below #P"/"))
"Retrieve all mountpoints below BELOW, ordered lexicographically.