diff --git a/default/systemd/system-sleep/unmount-fuse b/default/systemd/system-sleep/unmount-fuse index 6b8654e6..46cd0118 100755 --- a/default/systemd/system-sleep/unmount-fuse +++ b/default/systemd/system-sleep/unmount-fuse @@ -6,7 +6,7 @@ # to silently fail. The FUSE daemons restart automatically on wake. if [[ $1 == "pre" ]]; then - while IFS=' ' read -r _ mountpoint _ fstype _; do + while IFS=' ' read -r _ mountpoint fstype _; do if [[ $fstype == fuse.* ]]; then fusermount3 -uz "$mountpoint" 2>/dev/null || fusermount -uz "$mountpoint" 2>/dev/null || true fi