From 128440806c92c288d1ecd7f94c410acef20b58f1 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Fri, 20 Mar 2026 05:55:14 +0000 Subject: [PATCH] ops: added additional warning about possible overwrites of existing custom installs --- install/install_nomad.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/install_nomad.sh b/install/install_nomad.sh index 62e79bc..e67f4e5 100644 --- a/install/install_nomad.sh +++ b/install/install_nomad.sh @@ -335,7 +335,9 @@ setup_nvidia_container_toolkit() { } get_install_confirmation(){ - read -p "This script will install/update Project N.O.M.A.D. and its dependencies on your machine. Are you sure you want to continue? (y/N): " choice + echo -e "${YELLOW}#${RESET} This script will install Project N.O.M.A.D. and its dependencies on your machine." + echo -e "${YELLOW}#${RESET} If you already have Project N.O.M.A.D. installed with customized config or data, please be aware that running this installation script may overwrite existing files and configurations. It is highly recommended to back up any important data/configs before proceeding." + read -p "Are you sure you want to continue? (y/N): " choice case "$choice" in y|Y ) echo -e "${GREEN}#${RESET} User chose to continue with the installation."