From 86d4949d1410fc933bd0372fe4e2794c951f4b8c Mon Sep 17 00:00:00 2001 From: 4s3ti <4s3ti@4s3ti.net> Date: Thu, 25 Aug 2022 01:43:16 +0200 Subject: [PATCH] fix(makeovpn): Fix wrong export add missing "=" keynoPASS export --- scripts/openvpn/makeOVPN.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openvpn/makeOVPN.sh b/scripts/openvpn/makeOVPN.sh index abd5c45..265614f 100755 --- a/scripts/openvpn/makeOVPN.sh +++ b/scripts/openvpn/makeOVPN.sh @@ -155,7 +155,7 @@ done keynoPASS() { # Build the client key - export EASYRSA_CERT_EXPIRE "${DAYS}" + export EASYRSA_CERT_EXPIRE="${DAYS}" ./easyrsa build-client-full "${NAME}" nopass cd pki || exit }