From d08c3c750e191b3ec5ac245610b9221ff0a0e472 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 29 Dec 2025 22:48:55 -0600 Subject: [PATCH] changed default filenames --- scripts/setup_wizard.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/setup_wizard.sh b/scripts/setup_wizard.sh index 8b27c74..5c12f22 100755 --- a/scripts/setup_wizard.sh +++ b/scripts/setup_wizard.sh @@ -149,8 +149,8 @@ fi # Example: get_input "HOST_NAME" "Enter Hostname" "$(hostname)" "false" get_input "CERT_DIR" "Enter directory for certificates" "/var/lib/ssl" "false" -get_input "CERT_LOCATION" "Enter specific path for cert" "${CERT_DIR}/${HOSTNAME}.crt" "false" -get_input "KEY_LOCATION" "Enter specific path for private key" "${CERT_DIR}/${HOSTNAME}.key" "false" +get_input "CERT_LOCATION" "Enter specific path for cert" "${CERT_DIR}/cert.pem" "false" +get_input "KEY_LOCATION" "Enter specific path for private key" "${CERT_DIR}/key.pem" "false" export CERT_LOCATION=$(readlink -f $CERT_LOCATION) export KEY_LOCATION=$(readlink -f $KEY_LOCATION)