From 8d53d06fe02a9a68924b3cabffcf2387125b1f82 Mon Sep 17 00:00:00 2001 From: zenobit Date: Sat, 1 Mar 2025 07:10:53 +0100 Subject: [PATCH] specific_tweaks and distro_specific --- quickget | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/quickget b/quickget index 2d9eeb1..912314d 100755 --- a/quickget +++ b/quickget @@ -598,11 +598,8 @@ EOF fi # OS specific tweaks - . "actions/${OS}" - if [ ! "specific_tweaks" 2>/dev/null ]; then - echo $"#TODO: Nothing special" - fi - specific_tweaks || echo $"#TODO: Nothing special" + #. "actions/${OS}" + #specific_tweaks 2>/dev/null if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then # Minimum to install lobster testing is 18GB but 32GB are allocated for headroom echo "disk_size=\"32G\"" >> "${CONF_FILE}" @@ -659,12 +656,9 @@ function create_vm() { if [ -n "${HASH}" ]; then check_hash "${ISO}" "${HASH}" fi - # shellcheck disable=SC2076 . "actions/${OS}" - if [ ! "distro_specific" 2>/dev/null ]; then - echo $"#TODO: Nothing special" - fi + "distro_specific" 2>/dev/null make_vm_config "${ISO}" }