From c07a6db715b322eaf886fe1acbd68ec3f830fe65 Mon Sep 17 00:00:00 2001 From: cezar97 Date: Wed, 4 Jul 2018 02:21:19 +0300 Subject: [PATCH 1/2] Revoking cert removes ovpn --- openvpn-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index 403e0fd..7a73a14 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -109,6 +109,8 @@ if [[ -e /etc/openvpn/server.conf ]]; then cp /etc/openvpn/easy-rsa/pki/crl.pem /etc/openvpn/crl.pem # CRL is read with each client connection, when OpenVPN is dropped to nobody chown nobody:$GROUPNAME /etc/openvpn/crl.pem + rm -rf $(find /home -maxdepth 2 | grep $CLIENT.ovpn) 2>/dev/null + rm -rf /root/$CLIENT.ovpn 2>/dev/null echo echo "Certificate for client $CLIENT revoked!" else From 3e349e96d9dcde36c13f59b60e7d67a62bf41cfc Mon Sep 17 00:00:00 2001 From: cezar97 Date: Wed, 4 Jul 2018 02:24:41 +0300 Subject: [PATCH 2/2] Uninstalling OpenVPN remove ovpns --- openvpn-install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openvpn-install.sh b/openvpn-install.sh index 7a73a14..1b37e46 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -155,6 +155,12 @@ if [[ -e /etc/openvpn/server.conf ]]; then else yum remove openvpn -y fi + OVPNS=$(ls /etc/openvpn/easy-rsa/pki/issued | awk -F "." {'print $1'}) + for i in $OVPNS + do + rm $(find /home -maxdepth 2 | grep $i.ovpn) 2>/dev/null + rm /root/$i.ovpn 2>/dev/null + done rm -rf /etc/openvpn rm -f /etc/sysctl.d/30-openvpn-forward.conf echo