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
pull/718/head
Phil Clifford 2 years ago committed by Martin Wimpress
parent 92371b60c3
commit 44a8c68aef
  1. 6
      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}"

Loading…
Cancel
Save