aboutsummaryrefslogtreecommitdiffstats
path: root/http.sh
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-06-04 05:56:21 +0100
committerLexi Winter <ivy@FreeBSD.org>2025-06-04 05:56:21 +0100
commit578cb4ccf3723b692c5cbe18bf8eb146999dab53 (patch)
tree4563fa8799ef3ea6c203fb7b8e1f40c906e05c76 /http.sh
parentaf4f6e8a56545275c7dae00b9610cf1145fd82ca (diff)
downloadlfacme-578cb4ccf3723b692c5cbe18bf8eb146999dab53.tar.gz
lfacme-578cb4ccf3723b692c5cbe18bf8eb146999dab53.tar.bz2
make default/verbose output more consistent
Diffstat (limited to 'http.sh')
-rw-r--r--http.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/http.sh b/http.sh
index 2dff63f..0ae034e 100644
--- a/http.sh
+++ b/http.sh
@@ -34,11 +34,13 @@ _file="${ACME_HTTP_CHALLENGE_DIR}/${TOKEN}"
case "$ACTION" in
begin)
+ _verbose "creating validation token %s" "$_file"
echo "$AUTH" >"$_file"
exit $?
;;
done|failed)
+ _verbose "deleting validation token %s" "$_file"
rm -f "$_file"
exit $?
;;