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

Update openvpn-install.sh for Debian easy-rsa

Remove existing easy-rsa packages that may conflict with openvpn-install on Debian.
This commit is contained in:
Dustin Ru 2022-12-21 01:30:02 -08:00 committed by GitHub
parent f943387083
commit 798f865c7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -106,6 +106,12 @@ if [[ ! -e /etc/openvpn/server/server.conf ]]; then
apt-get update
apt-get install -y wget
fi
# Address improper easy-rsa installations on fresh debian instances
if [[ "$os" == "debian" ]]; then
echo "Removing improper easy-rsa packages for Debian prior to installation."
read -n1 -r -p "Press any key to remove easy-rsa and continue..."
apt-get remove -y easy-rsa
fi
clear
echo 'Welcome to this OpenVPN road warrior installer!'
# If system has a single IPv4, it is selected automatically. Else, ask the user