From ed74e50eee13d7a2d27528a693bfeaca8c09ce52 Mon Sep 17 00:00:00 2001 From: zenobit Date: Tue, 18 Feb 2025 03:35:44 +0100 Subject: [PATCH] Move config to.. --- actions/vanillaos | 5 +++++ quickget | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/actions/vanillaos b/actions/vanillaos index 1f4d385..62e5058 100644 --- a/actions/vanillaos +++ b/actions/vanillaos @@ -20,3 +20,8 @@ function get_() { HASH=$(web_pipe "${HASH_URL}" | cut -d' ' -f1) echo "${ISO} ${HASH}" } + +function specific_tweaks() { + ## Minimum is 50G for abroot, but a 64GB is allocated to give some headroom + echo "disk_size=\"64G\"" >> "${CONF_FILE}" +} diff --git a/quickget b/quickget index 489eb6b..6c93ce6 100755 --- a/quickget +++ b/quickget @@ -639,10 +639,6 @@ EOF echo "tpm=\"on\"" >> "${CONF_FILE}" fi ;; - vanillaos) - ## Minimum is 50G for abroot, but a 64GB is allocated to give some headroom - echo "disk_size=\"64G\"" >> "${CONF_FILE}" - ;; proxmox-ve) echo "disk_size=\"20G\"" >> "${CONF_FILE}" echo "ram=\"4G\"" >> "${CONF_FILE}"