From 798f865c7eda2bbf0778dfedcdf03f563fc2a859 Mon Sep 17 00:00:00 2001 From: Dustin Ru Date: Wed, 21 Dec 2022 01:30:02 -0800 Subject: [PATCH] Update openvpn-install.sh for Debian easy-rsa Remove existing easy-rsa packages that may conflict with openvpn-install on Debian. --- openvpn-install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index 4235723..357e5f0 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -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