Update debian-v3.sh

pull/152/head
tteckster 2022-04-12 14:08:30 -04:00 committed by GitHub
parent 2ea0eea518
commit bf23503c65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -239,15 +239,15 @@ header_info
echo -e "${GN}Using ${BGN}${RAM_SIZE}MiB${CL}${GN} RAM${CL}" 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 IP Address ${BGN}$NET${CL}"
echo -e "${GN}Using VLAN Tag ${BGN}$VLAN1${CL}" echo -e "${GN}Using VLAN Tag ${BGN}$VLAN1${CL}"
while true; do
read -p "Are these settings correct(y/n)?" yn read -p "Are these settings correct(y/n)? " -n 1 -r
case $yn in echo
[Yy]* ) break;; if [[ ! $REPLY =~ ^[Yy]$ ]]
[Nn]* ) clear; header_info; start_script;; then
* ) echo "Please answer yes or no";; advanced_settings
esac fi
done
} }
function start_script() { function start_script() {
echo -e "${YW}Type Advanced, or Press [ENTER] for Default Settings " echo -e "${YW}Type Advanced, or Press [ENTER] for Default Settings "
read SETTINGS read SETTINGS