From 9f293fad8f80a345ac1e064a0fc77f1857897c2b Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Tue, 7 Mar 2023 01:43:02 +0000 Subject: [PATCH] The lunar test week isos demand a minimum of 18G Otherwise they refuse to install. Added some overhead to allow for trying package updating and installation as well. --- quickget | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quickget b/quickget index 94050d2..43ec418 100755 --- a/quickget +++ b/quickget @@ -879,6 +879,10 @@ EOF ;; esac + if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then + # wont install lobster testing with less than 18GB + echo "disk_size=\"32G\"" >> "${CONF_FILE}" + fi # Enable TPM for Windows 11 if [ "${OS}" == "windows" ] && [ "${RELEASE}" -ge 11 ]; then echo "tpm=\"on\"" >> "${CONF_FILE}"