From 5c958842a49f91ee51bad5aad79e6de3a63d1718 Mon Sep 17 00:00:00 2001 From: Tim Kimber Date: Tue, 21 Feb 2023 21:42:42 +0000 Subject: [PATCH] Commiting change from PR to run tests --- getssl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getssl b/getssl index 2f2d87a..511923e 100755 --- a/getssl +++ b/getssl @@ -1156,7 +1156,7 @@ create_csr() { # create a csr using a given key (if it doesn't already exist) # create a temporary config file, for portability. tmp_conf=$(mktemp 2>/dev/null || mktemp -t getssl) || error_exit "mktemp failed" cat "$SSLCONF" > "$tmp_conf" - printf "[SAN]\n%s" "$SANLIST" >> "$tmp_conf" + printf "\n[SAN]\n%s" "$SANLIST" >> "$tmp_conf" # add OCSP Must-Staple to the domain csr # if openssl version >= 1.1.0 one can also use "tlsfeature = status_request" if [[ "$OCSP_MUST_STAPLE" == "true" ]]; then