From 6e16edbae5aeb14c0c1948217f3ee34fea67cbc6 Mon Sep 17 00:00:00 2001 From: Martin Berghaus Date: Wed, 15 Oct 2025 21:22:21 +0200 Subject: [PATCH] Added timestamp to run description --- script/ssl/renewCerts.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/ssl/renewCerts.sh b/script/ssl/renewCerts.sh index ea773fd..062a345 100644 --- a/script/ssl/renewCerts.sh +++ b/script/ssl/renewCerts.sh @@ -344,13 +344,13 @@ function main(){ case "${1}${2}" in --dns--own) - echo "Renewing own certificates via DNS:" + echo "Renewing own certificates at $(date +%F_%T) via DNS:" own "dns" "${3}" \ && echo "Finished successfully." \ && return 0 ;; --http--own) - echo "Renewing own certificates via HTTP:" + echo "Renewing own certificates at $(date +%F_%T) via HTTP:" own "http" "${3}" \ && echo \ && echo "Checking configuration of nginx and restart the webserver:" \ @@ -359,12 +359,12 @@ function main(){ && return 0 ;; --dns--single) - echo "Issue single certificate '${3}' via DNS:" + echo "Issue single certificate '${3}' at $(date +%F_%T) via DNS:" single "dns" "${3}" "${4}" \ && return 0 ;; --http--single) - echo "Issue single certificate '${3}' via HTTP:" + echo "Issue single certificate '${3}' at $(date +%F_%T) via HTTP:" single "http" "${3}" "${4}" \ && echo \ && echo "Checking configuration of nginx and restart the webserver:" \