From c9c0a51be2649d2a2ef253b77e34cde06648fe4c Mon Sep 17 00:00:00 2001 From: downtownallday Date: Wed, 3 Apr 2024 12:51:22 -0400 Subject: [PATCH] Create temporary file in TMP not the current working directory --- setup/ssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/ssl.sh b/setup/ssl.sh index 6b9e033c..a3ba8c2f 100755 --- a/setup/ssl.sh +++ b/setup/ssl.sh @@ -152,7 +152,7 @@ fi # so we can offer the user a control panel to install a better certificate. if [ ! -f "$STORAGE_ROOT/ssl/ssl_certificate.pem" ]; then # Generate a certificate signing request. - CSR="$(mktemp XXXXXXXXXX.csr)" + CSR="$(mktemp --tmpdir XXXXXXXXXX.csr)" hide_output \ openssl req -new -key "$STORAGE_ROOT/ssl/ssl_private_key.pem" -out "$CSR" \ -sha256 -subj "/CN=$PRIMARY_HOSTNAME"