From 45d266fbd46ccc5848718f1c6aa65aaebc809a94 Mon Sep 17 00:00:00 2001 From: Jane Doe Date: Wed, 24 Jan 2024 17:55:40 +0000 Subject: [PATCH] Custom System Setup: Removed the demand for adding system services to: "Add Services to be Enabled" prompt in order to continue with the custom installation. --- Amelia.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Amelia.sh b/Amelia.sh index 83c76bf..7d16494 100644 --- a/Amelia.sh +++ b/Amelia.sh @@ -1502,12 +1502,12 @@ Enter [y/n]: " invalid return 1;; esac - ok } ########################################################################################### cust_sys (){ + prompt="Custom System" sleep 0.5 NC " ___________________________ @@ -1545,15 +1545,17 @@ Enter a number: " return 1 ;; "") if [[ "${quick_install}" == "1" ]]; then - if [[ -z "${custompkgs}" || -z "${customservices}" ]]; then + if [[ -z "${custompkgs}" ]]; then until slct_dsktp; do : ; done else + ok until instl; do : ; done fi else - if [[ -z "${custompkgs}" || -z "${customservices}" ]]; then + if [[ -z "${custompkgs}" ]]; then until slct_dsktp; do : ; done else + ok until sys_submn; do : ; done fi fi ;;