aboutsummaryrefslogtreecommitdiffstats
path: root/http.sh
diff options
context:
space:
mode:
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 $?
;;