From 39a13ef12422eee2a54b6ce990894e04e2529458 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 10 Apr 2022 09:21:45 -0400 Subject: [PATCH] Update debian-v3.sh --- ct/debian-v3.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ct/debian-v3.sh b/ct/debian-v3.sh index 36015c07..1d6eb1f6 100644 --- a/ct/debian-v3.sh +++ b/ct/debian-v3.sh @@ -242,7 +242,14 @@ header_info echo -e "${GN}Using ${BGN}${RAM_SIZE}MiB${CL}${GN} RAM${CL}" echo -e "${GN}Using IP Address ${BGN}$NET${CL}" echo -e "${GN}Using VLAN Tag ${BGN}$VLAN1${CL}" - +while true; do + read -p "Are these settings correct(y/n)?" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) clear; header_info; start_script;; + * ) echo "Please answer yes or no";; + esac +done } function start_script() { echo -e "${YW}Type Advanced, or Press [ENTER] for Default Settings "