From 9e5795bf5505a0f3f87ebbc640f85e5811ac7a46 Mon Sep 17 00:00:00 2001 From: Skittels Date: Sat, 18 Feb 2017 13:03:40 +0100 Subject: [PATCH 1/2] Added DNS.WATCH to default dns servers --- automated install/basic-install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 94f26be9..f29d3957 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -444,6 +444,7 @@ setDNS() { Level3 "" Norton "" Comodo "" + DNS.WATCH "" Custom "") DNSchoices=$(whiptail --separate-output --menu "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 6 \ "${DNSChooseOptions[@]}" 2>&1 >/dev/tty) || \ @@ -474,6 +475,11 @@ setDNS() { PIHOLE_DNS_1="8.26.56.26" PIHOLE_DNS_2="8.20.247.20" ;; + DNS.WATCH) + echo "::: Using DNS.WATCH servers." + PIHOLE_DNS_1="84.200.69.80" + PIHOLE_DNS_2="84.200.70.40" + ;; Custom) until [[ ${DNSSettingsCorrect} = True ]]; do strInvalid="Invalid" From 4e7a485e2379ee781651e083a2005b212132d2dd Mon Sep 17 00:00:00 2001 From: Skittels Date: Sat, 18 Feb 2017 13:42:13 +0100 Subject: [PATCH 2/2] Update basic-install.sh --- automated install/basic-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index f29d3957..08e2a2d1 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -444,7 +444,7 @@ setDNS() { Level3 "" Norton "" Comodo "" - DNS.WATCH "" + DNSWatch "" Custom "") DNSchoices=$(whiptail --separate-output --menu "Select Upstream DNS Provider. To use your own, select Custom." ${r} ${c} 6 \ "${DNSChooseOptions[@]}" 2>&1 >/dev/tty) || \ @@ -475,7 +475,7 @@ setDNS() { PIHOLE_DNS_1="8.26.56.26" PIHOLE_DNS_2="8.20.247.20" ;; - DNS.WATCH) + DNSWatch) echo "::: Using DNS.WATCH servers." PIHOLE_DNS_1="84.200.69.80" PIHOLE_DNS_2="84.200.70.40"