[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47136] [PATCH 1/3] services: certbot: Remove deprecated --manual-pu
From: |
Pierre Langlois |
Subject: |
[bug#47136] [PATCH 1/3] services: certbot: Remove deprecated --manual-public-ip-logging-ok. |
Date: |
Sun, 14 Mar 2021 13:15:41 +0000 |
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.
---
gnu/services/certbot.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index 1c67ff63f1..1cea68fc2a 100644
--- a/gnu/services/certbot.scm
+++ b/gnu/services/certbot.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2019 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -103,7 +104,6 @@
"--manual"
(string-append "--preferred-challenges=" challenge)
"--cert-name" name
- "--manual-public-ip-logging-ok"
"-d" (string-join domains ","))
(if email
`("--email" ,email)
--
2.30.2