From 8d512b945a7404f900586ac7d5cf8a98c94cd763 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 28 Jul 2015 09:07:44 -0400 Subject: [PATCH] added support to specify open-ssl config file using --ssl-conf command flag --- easyrsa3/easyrsa | 3 +++ 1 file changed, 3 insertions(+) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index a7d6345..08c5304 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -185,6 +185,7 @@ General options: --batch : set automatic (no-prompts when possible) mode --pki-dir=DIR : declares the PKI directory +--ssl-conf=FILE : define a specific open-ssl config file to use for Easy-RSA config --vars=FILE : define a specific 'vars' file to use for Easy-RSA config Certificate & Request options: (these impact cert/req field values) @@ -1074,6 +1075,8 @@ while :; do ;; --pki-dir) export EASYRSA_PKI="$val" ;; + --ssl-conf) + export EASYRSA_SSL_CONF="$val" ;; --use-algo) export EASYRSA_ALGO="$val" ;; --keysize)