From c2be72d8eaa6ebe6e62732c11aab7916f0857c77 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 5 Jan 2024 13:28:06 +0100 Subject: [PATCH] feat: Add FUSE warning (#301) --- src/disk.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/disk.sh b/src/disk.sh index 568830f..9aafa59 100644 --- a/src/disk.sh +++ b/src/disk.sh @@ -314,6 +314,10 @@ checkFS () { info "Warning: the filesystem of $DIR is OverlayFS, this usually means it was binded to an invalid path!" fi + if [[ "${FS,,}" == "fuse"* ]]; then + info "Warning: the filesystem of $DIR is FUSE, this extra layer will negatively affect performance!" + fi + if isCow "$FS"; then if [ -f "$DISK_FILE" ]; then FA=$(lsattr "$DISK_FILE")