1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-04 13:13:31 +03:00

Improve grammar and spelling

This commit is contained in:
Nyr 2025-03-11 19:01:53 +01:00
parent 13b02452f8
commit 348608c2b4

View file

@ -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."