From 31e549a44bb69be36b3662a571a8932710813995 Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 6 Nov 2025 03:20:33 +0100 Subject: [PATCH] Change condition for OverlayFS warning in disk.sh --- src/disk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disk.sh b/src/disk.sh index 594ce74..ccf3e89 100644 --- a/src/disk.sh +++ b/src/disk.sh @@ -346,7 +346,7 @@ checkFS () { DIR=$(dirname "$DISK_FILE") [ ! -d "$DIR" ] && return 0 - if [[ "${FS,,}" == "overlay"* && "$PODMAN" != [Yy1]* ]]; then + if [[ "${FS,,}" == "overlay"* && "${ENGINE,,}" == "docker" ]]; then warn "the filesystem of $DIR is OverlayFS, this usually means it was binded to an invalid path!" fi