From 29e8fa3851db60c102f5aaaeeb26bcc9bac7d729 Mon Sep 17 00:00:00 2001 From: randomshell Date: Mon, 27 Jul 2020 03:20:58 +0000 Subject: [PATCH] Update DNS question Co-authored-by: Stanislas --- wireguard-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wireguard-install.sh b/wireguard-install.sh index 3e4734b..2c8a154 100644 --- a/wireguard-install.sh +++ b/wireguard-install.sh @@ -95,10 +95,10 @@ function installQuestions() { # Adguard DNS by default until [[ "${CLIENT_DNS_1}" =~ ^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$ ]]; do - read -rp "First DNS resolver to use for the client: " -e -i 176.103.130.130 CLIENT_DNS_1 + read -rp "First DNS resolver to use for the clients: " -e -i 176.103.130.130 CLIENT_DNS_1 done until [[ "${CLIENT_DNS_2}" =~ ^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$ ]]; do - read -rp "Second DNS resolver to use for the client (optional): " -e -i 176.103.130.131 CLIENT_DNS_2 + read -rp "Second DNS resolver to use for the clients (optional): " -e -i 176.103.130.131 CLIENT_DNS_2 if [[ "${CLIENT_DNS_2}" == "" ]]; then CLIENT_DNS_2="${CLIENT_DNS_1}" fi