From 2bfdd5543fa082811e4b6798149e9f38daa7aa77 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Tue, 30 Dec 2025 00:35:46 -0600 Subject: [PATCH] tweaked output --- scripts/setup_wizard.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/setup_wizard.sh b/scripts/setup_wizard.sh index 813ee89..facb516 100755 --- a/scripts/setup_wizard.sh +++ b/scripts/setup_wizard.sh @@ -171,7 +171,7 @@ if [ ! -f "$CERT_LOCATION" ] || [ ! -f "$KEY_LOCATION" ]; then --provisioner admin fi -echo "Cert information:" +echo -E "\n\nCert information:" echo "-----------------------------" openssl x509 -noout -subject -issuer -ext extendedKeyUsage -ext subjectAltName -enddate -in "$CERT_LOCATION" @@ -181,12 +181,12 @@ REPO_URL_BASE=https://gitea.john-stream.com/john/soteria/raw/branch/main/ SERVICE_TEMPLATE_URL="${REPO_URL_BASE}systemd/${SERVICE_FILE}" TIMER_TEMPLATE_URL="${REPO_URL_BASE}systemd/${TIMER_FILE}" -echo "Installing rotation services" +echo -E "\n\nInstalling rotation services" echo "-----------------------------" install_unit ${SERVICE_TEMPLATE_URL} install_unit ${TIMER_TEMPLATE_URL} -echo "Reloading services" +echo -E "\n\nReloading services" echo "-----------------------------" systemctl daemon-reload systemctl enable --now "${TIMER_FILE}" "${SERVICE_FILE}"