Change 'Other' to 'Custom', add explanation to whiptail. Convert spaces to tabs.

This commit is contained in:
Promofaux 2016-02-20 15:00:03 +00:00
parent b41608d40b
commit 7001edcd1d

View file

@ -304,13 +304,13 @@ setStaticIPv4() {
}
setDNS(){
DNSChoseCmd=(whiptail --separate-output --radiolist "Select Upstream DNS Provider" $r $c 6)
DNSChoseCmd=(whiptail --separate-output --radiolist "Select Upstream DNS Provider. To use your own, select Custom" $r $c 6)
DNSChooseOptions=(Google "" on
OpenDNS "" off
Level3 "" off
Norton "" off
Comodo "" off
Other "" off)
Custom "" off)
DNSchoices=$("${DNSChoseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty)
if [[ $? = 0 ]];then
case $DNSchoices in
@ -339,7 +339,7 @@ setDNS(){
piholeDNS1="8.26.56.26"
piholeDNS2="8.20.247.20"
;;
Other)
Custom)
until [[ $DNSSettingsCorrect = True ]]
do
piholeDNS=$(whiptail --backtitle "Specify Upstream DNS Provider(s)" --inputbox "Enter your desired upstream DNS provider(s)" $r $c "8.8.8.8, 8.8.4.4" 3>&1 1>&2 2>&3)