From 32d4a55c1a85aeab2e9b68d20757178241a054b0 Mon Sep 17 00:00:00 2001 From: Jelle Dekker Date: Sat, 14 Oct 2017 13:03:12 -0500 Subject: [PATCH] Now using a nice argument instead assigning variables directly. --- auto_install/install.sh | 2 +- scripts/removeOVPN.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/auto_install/install.sh b/auto_install/install.sh index c28ded4..2ab28d2 100755 --- a/auto_install/install.sh +++ b/auto_install/install.sh @@ -886,7 +886,7 @@ EOF ${SUDOE} openvpn --genkey --secret pki/ta.key # Generate an empty Certificate Revocation List - ${SUDOE} EASYRSA_CRL_DAYS=3650 ./easyrsa gen-crl + ${SUDOE} ./easyrsa gen-crl --days=3650 ${SUDOE} cp pki/crl.pem /etc/openvpn/crl.pem ${SUDOE} chown nobody:nogroup /etc/openvpn/crl.pem diff --git a/scripts/removeOVPN.sh b/scripts/removeOVPN.sh index 25bc5a3..4cf1fd1 100644 --- a/scripts/removeOVPN.sh +++ b/scripts/removeOVPN.sh @@ -107,7 +107,7 @@ cd /etc/openvpn/easy-rsa || exit for (( ii = 0; ii < ${#CERTS_TO_REVOKE[@]}; ii++)); do printf "\n::: Revoking certificate '"%s"'.\n" "${CERTS_TO_REVOKE[ii]}" ./easyrsa --batch revoke "${CERTS_TO_REVOKE[ii]}" - EASYRSA_CRL_DAYS=3650 ./easyrsa gen-crl + ./easyrsa gen-crl --days=3650 printf "\n::: Certificate revoked, and CRL file updated.\n" printf "::: Removing certs and client configuration for this profile.\n" rm -rf "pki/reqs/${CERTS_TO_REVOKE[ii]}.req"