From 6c4a95ab9042c8375be9a685e9640cf2f27e8783 Mon Sep 17 00:00:00 2001 From: hwdsl2 Date: Fri, 14 Feb 2025 08:25:19 -0600 Subject: [PATCH] Update to easy-rsa 3.2.2 --- openvpn-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 0133e7a..c395303 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -888,7 +888,7 @@ remove_firewall_rules() { install_easyrsa() { # Get easy-rsa - easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.2.1/EasyRSA-3.2.1.tgz' + easy_rsa_url='https://github.com/OpenVPN/easy-rsa/releases/download/v3.2.2/EasyRSA-3.2.2.tgz' mkdir -p /etc/openvpn/server/easy-rsa/ { wget -t 3 -T 30 -qO- "$easy_rsa_url" 2>/dev/null || curl -m 30 -sL "$easy_rsa_url" ; } | tar xz -C /etc/openvpn/server/easy-rsa/ --strip-components 1 if [ ! -f /etc/openvpn/server/easy-rsa/easyrsa ]; then