Include option '--tmp-dir' to define the temporary directory

Signed-off-by: Richard T Bonhomme <tincantech@protonmail.com>
This commit is contained in:
Richard T Bonhomme 2022-04-18 20:50:09 +01:00
parent c42364ab32
commit f503a22cc7
No known key found for this signature in database
GPG Key ID: 2D767DB92FB6C246

View File

@ -232,7 +232,8 @@ General options:
--passin=ARG : set -passin ARG for openssl --passin=ARG : set -passin ARG for openssl
--passout=ARG : set -passout ARG for openssl --passout=ARG : set -passout ARG for openssl
--pki-dir=DIR : declares the PKI directory --pki-dir=DIR : declare the PKI directory
--tmp-dir=DIR : declare the temporary directory
--ssl-conf=FILE : define a specific OpenSSL config file for Easy-RSA to use --ssl-conf=FILE : define a specific OpenSSL config file for Easy-RSA to use
--vars=FILE : define a specific 'vars' file to use for Easy-RSA config --vars=FILE : define a specific 'vars' file to use for Easy-RSA config
--version : prints EasyRSA version and build information, then exits --version : prints EasyRSA version and build information, then exits
@ -2984,6 +2985,8 @@ while :; do
;; ;;
--pki-dir) --pki-dir)
export EASYRSA_PKI="$val" ;; export EASYRSA_PKI="$val" ;;
--tmp-dir)
export EASYRSA_TEMP_DIR="$val" ;;
--ssl-conf) --ssl-conf)
export EASYRSA_SSL_CONF="$val" ;; export EASYRSA_SSL_CONF="$val" ;;
--use-algo) --use-algo)