From ca62e662ec1f31c1cfc1d79c5e3054e98dacdd0b Mon Sep 17 00:00:00 2001 From: Richard T Bonhomme Date: Fri, 8 Dec 2023 23:44:00 +0000 Subject: [PATCH] verify_working_env(): Minor clean up Signed-off-by: Richard T Bonhomme --- easyrsa3/easyrsa | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index cec28367f..b4c66ba8e 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -5286,9 +5286,8 @@ verify_working_env() { # Verify PKI is initialised verify_pki_init - # Temp dir session - secure_session || die "\ -verify_working_env - secure-session failed" + # Temp dir session and default SSL conf file + secure_session # Verify selected algorithm and parameters verify_algo_params @@ -5297,7 +5296,6 @@ verify_working_env - secure-session failed" if [ "$require_ca" ]; then verify_ca_init fi - fi verbose "verify_working_env: COMPLETED Handover-to: $cmd" } # => verify_working_env()