Skip to content

Commit 6cb2a0d

Browse files
committed
ops: added additional warning about possible overwrites of existing custom installs
1 parent 6934e8b commit 6cb2a0d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install/install_nomad.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,9 @@ setup_nvidia_container_toolkit() {
335335
}
336336

337337
get_install_confirmation(){
338-
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
338+
echo -e "${YELLOW}#${RESET} This script will install Project N.O.M.A.D. and its dependencies on your machine."
339+
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."
340+
read -p "Are you sure you want to continue? (y/N): " choice
339341
case "$choice" in
340342
y|Y )
341343
echo -e "${GREEN}#${RESET} User chose to continue with the installation."

0 commit comments

Comments
 (0)