From 7405cc3d65bb1d3c4f104d1542e17e052f2b9b3e Mon Sep 17 00:00:00 2001 From: Alessandro Partesotti Date: Mon, 24 Apr 2023 18:32:35 +0200 Subject: [PATCH] fix choices --- openvpn-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index deb7ed8..6704859 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -325,9 +325,12 @@ function installQuestions() { ;; 2) read -rp "IP NETWORK (e.g. 192.168.4.0): " -e -i 1 LAN_IP + echo "NETWORK SET TO $LAN_IP" read -rp "SUBNET (e.g. 255.255.255.0) : " -e -i 1 LAN_SUBNET_MASK + echo "SUBNET SET TO $LAN_SUBNET_MASK" ;; esac + done echo "" echo "What DNS resolvers do you want to use with the VPN?" echo " 1) Current system resolvers (from /etc/resolv.conf)"