From 3e67d92fd3f69355e62a330ef78bf927a169b09a Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Wed, 16 Sep 2020 12:07:27 +0200 Subject: [PATCH] certbot: an empty change shouldn't raise an exception --- CHANGELOG.md | 1 + certbot/files/hooks/z-commit-etc.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28834b1b..6b737c61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ The **patch** part changes incrementally at each release. ### Fixed +* certbot: an empty change shouldn't raise an exception * certbot: fix "no-self-upgrade" option ### Removed diff --git a/certbot/files/hooks/z-commit-etc.sh b/certbot/files/hooks/z-commit-etc.sh index e543b4ad..c83a4039 100644 --- a/certbot/files/hooks/z-commit-etc.sh +++ b/certbot/files/hooks/z-commit-etc.sh @@ -22,7 +22,7 @@ main() { message="[letsencrypt] certificates renewal (${RENEWED_DOMAINS})" ${git_bin} commit --message "${message}" --quiet else - error "Weird, nothing has changed but the hook has been executed for '${RENEWED_DOMAINS}'" + debug "Weird, nothing has changed but the hook has been executed for '${RENEWED_DOMAINS}'" fi fi }