mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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>
This commit is contained in:
parent
e51a7178b2
commit
76d816d559
1 changed files with 1 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||||
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
|
;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2024 Carlo Zancanaro <carlo@zancanaro.id.au>
|
;;; Copyright © 2024 Carlo Zancanaro <carlo@zancanaro.id.au>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -148,7 +149,6 @@ deploy."
|
||||||
"--manual"
|
"--manual"
|
||||||
(string-append "--preferred-challenges=" challenge)
|
(string-append "--preferred-challenges=" challenge)
|
||||||
"--cert-name" name
|
"--cert-name" name
|
||||||
"--manual-public-ip-logging-ok"
|
|
||||||
"-d" (string-join domains ","))
|
"-d" (string-join domains ","))
|
||||||
(if csr `("--csr" ,csr) '())
|
(if csr `("--csr" ,csr) '())
|
||||||
(if email
|
(if email
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue