diff options
author | Carlo Zancanaro <carlo@zancanaro.id.au> | 2019-08-10 22:52:50 +1000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-16 10:22:35 +0200 |
commit | ec36339dfd2241cd518bb86b6714fc3b340afa95 (patch) | |
tree | 10445470dd0a2ab22f9352a10cabb1aeb7443d74 /gnu/services/certbot.scm | |
parent | fb6e550d6b054371bff5d27f4c368a8cd977bb40 (diff) | |
download | patches-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/certbot.scm')
-rw-r--r-- | gnu/services/certbot.scm | 1 |
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 |