mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
DNS whiptail from radio to menu
This commit is contained in:
parent
34ad2157dd
commit
eaf6938c35
1 changed files with 7 additions and 7 deletions
|
@ -432,13 +432,13 @@ valid_ip() {
|
||||||
setDNS() {
|
setDNS() {
|
||||||
local DNSSettingsCorrect
|
local DNSSettingsCorrect
|
||||||
|
|
||||||
DNSChooseOptions=(Google "" on
|
DNSChooseOptions=(Google ""
|
||||||
OpenDNS "" off
|
OpenDNS ""
|
||||||
Level3 "" off
|
Level3 ""
|
||||||
Norton "" off
|
Norton ""
|
||||||
Comodo "" off
|
Comodo ""
|
||||||
Custom "" off)
|
Custom "")
|
||||||
DNSchoices=$(whiptail --separate-output --radiolist "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 6 \
|
DNSchoices=$(whiptail --separate-output --menu "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 6 \
|
||||||
"${DNSChooseOptions[@]}" 2>&1 >/dev/tty) || \
|
"${DNSChooseOptions[@]}" 2>&1 >/dev/tty) || \
|
||||||
{ echo "::: Cancel selected. Exiting"; exit 1; }
|
{ echo "::: Cancel selected. Exiting"; exit 1; }
|
||||||
case ${DNSchoices} in
|
case ${DNSchoices} in
|
||||||
|
|
Loading…
Reference in a new issue