summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-09-10 17:30:09 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2024-02-16 19:47:39 -0500
commit8fd593553704b80bed4d4917738fc12e0a608011 (patch)
tree6c3d134b3678a7ff6f42f5b07877402012296bb3
parentff7906fdc636db19f523abbcc2e4f800eb86425e (diff)
Ensure fuse filesystems unmount correctly
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--common/rc3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/rc b/common/rc
index 524ffa02..f5c17dd9 100644
--- a/common/rc
+++ b/common/rc
@@ -315,6 +315,9 @@ _scratch_unmount()
btrfs)
$UMOUNT_PROG $SCRATCH_MNT
;;
+ fuse.*)
+ $UMOUNT_PROG $SCRATCH_MNT
+ ;;
*)
$UMOUNT_PROG $SCRATCH_DEV
;;