Merge pull request #9853 from HiassofT/le13-generic-legacy-system-size

Generic: use a minimum SYSTEM_SIZE of 1GB
This commit is contained in:
mglae 2025-03-09 19:14:01 +01:00 committed by GitHub
commit 34ce02cb53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,3 +72,8 @@
# Default size of the ova image, in MB, eg. 4096 # Default size of the ova image, in MB, eg. 4096
OVA_SIZE="4096" OVA_SIZE="4096"
# ensure system size is at least 1 GB
if [ ${SYSTEM_SIZE} -lt 1024 ]; then
SYSTEM_SIZE=1024
fi