diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2021-03-14 13:15:41 +0000 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-08 16:54:06 +0900 |
commit | 76d816d559122d026baac7129731c6726db778f5 (patch) | |
tree | 5d9f7cabcc277679313acd58ec7571731592a974 /gnu/services/certbot.scm | |
parent | e51a7178b2d3ed8adb107ef877d57c271ec2566f (diff) |
services: certbot: Remove deprecated --manual-public-ip-logging-ok.
The --manual-public-ip-logging-ok flag is now a no-op and was deprecated
https://github.com/certbot/certbot/pull/8381
* gnu/sevices/certbot.scm (certbot-command): Remove
--manual-public-ip-logging-ok when doing a manual challenge.
Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
Diffstat (limited to 'gnu/services/certbot.scm')
-rw-r--r-- | gnu/services/certbot.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm index d6c7d175ff..2c7979a4be 100644 --- a/gnu/services/certbot.scm +++ b/gnu/services/certbot.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us> ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name> +;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com> ;;; Copyright © 2024 Carlo Zancanaro <carlo@zancanaro.id.au> ;;; ;;; This file is part of GNU Guix. @@ -148,7 +149,6 @@ deploy." "--manual" (string-append "--preferred-challenges=" challenge) "--cert-name" name - "--manual-public-ip-logging-ok" "-d" (string-join domains ",")) (if csr `("--csr" ,csr) '()) (if email |