system & data drive >= 64GB

This commit is contained in:
rootzoll
2025-01-05 17:18:48 +01:00
parent a7fe1d7287
commit a2ac2fc323

View File

@@ -160,7 +160,7 @@ if [ "$1" = "layout" ]; then
fi
# Check DATA DRIVE
elif [ -d "${mountPath}/app-data" ]; then
elif [ -d "${mountPath}/app-data" ] && [ ${size} -gt 63 ]; then
# check for unclean setups
if [ -d "${mountPath}/app-storage" ]; then
@@ -179,7 +179,7 @@ if [ "$1" = "layout" ]; then
fi
# Check SYSTEM DRIVE
elif [ -d "${mountPath}/boot" ] && [ -d "${mountPath}/sys" ]; then
elif [ -d "${mountPath}/boot" ] && [ -d "${mountPath}/sys" ] && [ ${size} -gt 63 ]; then
# check for unclean setups
if [ -d "${mountPath}/app-storage" ]; then