From 8ebb013339dd921156ea687e3fa49b107dbd6774 Mon Sep 17 00:00:00 2001 From: Richard T Bonhomme Date: Thu, 8 Sep 2022 14:11:53 +0100 Subject: [PATCH] Option --keep-tmp: Do not remove sign_req() extentions temp file The extentions temp-file is part of the session temp-dir and is otherwise removed by cleanup() on successful completion. Part-of: #667 Closes: #676 Signed-off-by: Richard T Bonhomme --- easyrsa3/easyrsa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyrsa3/easyrsa b/easyrsa3/easyrsa index edadcb3..d1dc238 100755 --- a/easyrsa3/easyrsa +++ b/easyrsa3/easyrsa @@ -1762,7 +1762,7 @@ $ext_tmp" || die "signing failed (openssl output above may have more detail)" mv "$crt_out_tmp" "$crt_out" - rm -f "$ext_tmp" + #rm -f "$ext_tmp" # Success messages #unset -v EASYRSA_BATCH # This is why batch mode should not silence output