From 348608c2b4ff52dae6a34fef23c80702d14f0411 Mon Sep 17 00:00:00 2001 From: Nyr Date: Tue, 11 Mar 2025 19:01:53 +0100 Subject: [PATCH] Improve grammar and spelling --- openvpn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 1c7b47d..1502bb0 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -11,7 +11,7 @@ if readlink /proc/$$/exe | grep -q "dash"; then exit fi -# Discard stdin. Needed when running from an one-liner which includes a newline +# Discard stdin. Needed when running from a one-liner which includes a newline read -N 999999 -t 0.001 # Detect OS @@ -175,7 +175,7 @@ if [[ ! -e /etc/openvpn/server/server.conf ]]; then ;; esac echo - echo "What port should OpenVPN listen to?" + echo "What port should OpenVPN listen on?" read -p "Port [1194]: " port until [[ -z "$port" || "$port" =~ ^[0-9]+$ && "$port" -le 65535 ]]; do echo "$port: invalid port."