From 77b87f41b232634b90f53bc3c5656a7ceb1317a5 Mon Sep 17 00:00:00 2001 From: hwdsl2 Date: Thu, 19 Oct 2023 23:51:02 -0500 Subject: [PATCH] Cleanup --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 2f90a49..7ca48c8 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -298,7 +298,7 @@ select_protocol() { select_port() { if [ "$auto" = 0 ]; then echo - echo "What port should OpenVPN listen to?" + echo "Which port should OpenVPN listen to?" read -rp "Port [1194]: " port until [[ -z "$port" || "$port" =~ ^[0-9]+$ && "$port" -le 65535 ]]; do echo "$port: invalid port."