feat: Add FUSE warning (#301)
This commit is contained in:
parent
11692b41f0
commit
c2be72d8ea
1 changed files with 4 additions and 0 deletions
|
@ -314,6 +314,10 @@ checkFS () {
|
||||||
info "Warning: the filesystem of $DIR is OverlayFS, this usually means it was binded to an invalid path!"
|
info "Warning: the filesystem of $DIR is OverlayFS, this usually means it was binded to an invalid path!"
|
||||||
fi
|
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 isCow "$FS"; then
|
||||||
if [ -f "$DISK_FILE" ]; then
|
if [ -f "$DISK_FILE" ]; then
|
||||||
FA=$(lsattr "$DISK_FILE")
|
FA=$(lsattr "$DISK_FILE")
|
||||||
|
|
Loading…
Reference in a new issue