From 44a8c68aef5661a68de4417867ea49469c5e96b8 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Tue, 7 Mar 2023 01:43:02 +0000 Subject: [PATCH] The daily isos demand a minimum of 18G Otherwise they refuse to install. Added some overhead to allow for trying package updating and installation as well. daily-canary appears to have returned as well --- quickget | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/quickget b/quickget index 243d2df..a2607f0 100755 --- a/quickget +++ b/quickget @@ -624,11 +624,11 @@ function releases_ubuntu() { ; else - # daily-canary \ # seems to have vanished, to be replaced by daily-legacy echo ${LTS_SUPPORT} \ ${INTERIM_SUPPORT} \ jammy-daily \ daily-live \ + daily-canary \ daily-legacy \ eol-4.10 \ eol-5.04 \ @@ -981,6 +981,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}"