From 3161e9385634c4af59319502a43bba8e0836a91e Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Tue, 5 May 2020 10:49:33 +0200 Subject: [PATCH] Restore forgotten output redirection It had been removed temporarily to debug an issue --- shellpki | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shellpki b/shellpki index 2bc02e0..8ea6c07 100755 --- a/shellpki +++ b/shellpki @@ -461,7 +461,8 @@ create() { "${OPENSSL_BIN}" genrsa \ -out "${key_file}" \ ${PASS_ARGS} \ - ${KEY_LENGTH} + ${KEY_LENGTH} \ + >/dev/null 2>&1 # generate csr req PASS_ARGS=""