mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-26 03:28:04 +02:00
system & data drive >= 64GB
This commit is contained in:
@@ -160,7 +160,7 @@ if [ "$1" = "layout" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Check DATA DRIVE
|
# Check DATA DRIVE
|
||||||
elif [ -d "${mountPath}/app-data" ]; then
|
elif [ -d "${mountPath}/app-data" ] && [ ${size} -gt 63 ]; then
|
||||||
|
|
||||||
# check for unclean setups
|
# check for unclean setups
|
||||||
if [ -d "${mountPath}/app-storage" ]; then
|
if [ -d "${mountPath}/app-storage" ]; then
|
||||||
@@ -179,7 +179,7 @@ if [ "$1" = "layout" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Check SYSTEM DRIVE
|
# 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
|
# check for unclean setups
|
||||||
if [ -d "${mountPath}/app-storage" ]; then
|
if [ -d "${mountPath}/app-storage" ]; then
|
||||||
|
Reference in New Issue
Block a user