From bee17320137479fb6dc7b69840094ba681088918 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 3 Dec 2022 13:52:32 -0500 Subject: [PATCH] Update debian-v4.sh --- ct/debian-v4.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ct/debian-v4.sh b/ct/debian-v4.sh index 301d10e9..457e5bce 100644 --- a/ct/debian-v4.sh +++ b/ct/debian-v4.sh @@ -89,7 +89,7 @@ function default_settings() { NET=dhcp echo -e "${DGN}Using Gateway Address: ${BGN}Default${CL}" GATE="" - echo -e "${DGN}Using DNS Domain: ${BGN}Host${CL}" + echo -e "${DGN}Using DNS Search Domain: ${BGN}Host${CL}" SD="" echo -e "${DGN}Using DNS Server Address: ${BGN}Host${CL}" NS="" @@ -195,16 +195,16 @@ function advanced_settings() { echo -e "${DGN}Using Gateway IP Address: ${BGN}$GATE1${CL}" fi fi - SD=$(whiptail --inputbox "Set a DNS Domain (leave blank for HOST)" 8 58 --title "DNS Domain" --cancel-button Exit-Script 3>&1 1>&2 2>&3) + SD=$(whiptail --inputbox "Set a DNS Search Domain (leave blank for HOST)" 8 58 --title "DNS Search Domain" --cancel-button Exit-Script 3>&1 1>&2 2>&3) exitstatus=$? if [ $exitstatus = 0 ]; then if [ -z $SD ]; then SD="" - echo -e "${DGN}Using DNS Domain: ${BGN}Host${CL}" + echo -e "${DGN}Using DNS Search Domain: ${BGN}Host${CL}" else SX=$SD SD="-searchdomain=$SD" - echo -e "${DGN}Using DNS Domain: ${BGN}$SX${CL}" + echo -e "${DGN}Using DNS Search Domain: ${BGN}$SX${CL}" fi fi NS=$(whiptail --inputbox "Set a DNS Server IP (leave blank for HOST)" 8 58 --title "DNS SERVER IP" --cancel-button Exit-Script 3>&1 1>&2 2>&3)