summaryrefslogtreecommitdiff
path: root/gnu/services
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@zancanaro.id.au>2019-08-10 22:52:50 +1000
committerLudovic Courtès <ludo@gnu.org>2019-09-16 10:22:35 +0200
commitec36339dfd2241cd518bb86b6714fc3b340afa95 (patch)
tree10445470dd0a2ab22f9352a10cabb1aeb7443d74 /gnu/services
parentfb6e550d6b054371bff5d27f4c368a8cd977bb40 (diff)
downloadpatches-ec36339dfd2241cd518bb86b6714fc3b340afa95.tar
patches-ec36339dfd2241cd518bb86b6714fc3b340afa95.tar.gz
services: certbot: Add --manual-public-ip-logging-ok for manual challenges
* gnu/services/certbot.scm (certbot-command): Add --manual-public-ip-logging-ok flag to the certbot command when doing a manual challenge. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/certbot.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index ae34ad17bb..0d3be03383 100644
--- a/gnu/services/certbot.scm
+++ b/gnu/services/certbot.scm
@@ -99,6 +99,7 @@
"--manual"
(string-append "--preferred-challenges=" challenge)
"--cert-name" name
+ "--manual-public-ip-logging-ok"
"-d" (string-join domains ","))
(if rsa-key-size `("--rsa-key-size" ,rsa-key-size) '())
(if authentication-hook