diff --git a/openvpn-install.sh b/openvpn-install.sh index eb64a9b..8b1784c 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -1141,7 +1141,8 @@ function removeUnbound () { function removeOpenVPN () { echo "" - read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i "n" REMOVE + # shellcheck disable=SC2034 + read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i n REMOVE if [[ "$REMOVE" = 'y' ]]; then # Get OpenVPN port from the configuration PORT=$(grep '^port ' /etc/openvpn/server.conf | cut -d " " -f 2)