mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
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
This commit is contained in:
parent
92371b60c3
commit
44a8c68aef
1 changed files with 5 additions and 1 deletions
6
quickget
6
quickget
|
@ -624,11 +624,11 @@ function releases_ubuntu() {
|
||||||
;
|
;
|
||||||
|
|
||||||
else
|
else
|
||||||
# daily-canary \ # seems to have vanished, to be replaced by daily-legacy
|
|
||||||
echo ${LTS_SUPPORT} \
|
echo ${LTS_SUPPORT} \
|
||||||
${INTERIM_SUPPORT} \
|
${INTERIM_SUPPORT} \
|
||||||
jammy-daily \
|
jammy-daily \
|
||||||
daily-live \
|
daily-live \
|
||||||
|
daily-canary \
|
||||||
daily-legacy \
|
daily-legacy \
|
||||||
eol-4.10 \
|
eol-4.10 \
|
||||||
eol-5.04 \
|
eol-5.04 \
|
||||||
|
@ -981,6 +981,10 @@ EOF
|
||||||
;;
|
;;
|
||||||
esac
|
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
|
# Enable TPM for Windows 11
|
||||||
if [ "${OS}" == "windows" ] && [ "${RELEASE}" -ge 11 ]; then
|
if [ "${OS}" == "windows" ] && [ "${RELEASE}" -ge 11 ]; then
|
||||||
echo "tpm=\"on\"" >> "${CONF_FILE}"
|
echo "tpm=\"on\"" >> "${CONF_FILE}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue