diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-11-28 23:31:48 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-11-28 23:34:25 +0100 |
commit | 3af03e5967cf49ed1a4382dad7d75daa95ec5217 (patch) | |
tree | c85402ea1f5e8ec3367959942151162a285927b9 /gnu/services | |
parent | a222b734b38f93b014b21e4d538002a5fec71b8a (diff) | |
download | guix-3af03e5967cf49ed1a4382dad7d75daa95ec5217.tar guix-3af03e5967cf49ed1a4382dad7d75daa95ec5217.tar.gz |
services: certbot: Add default value and description.
* gnu/services/certbot.scm (certbot-service-type)
[default-value, description]: New fields.
* po/packages/POTFILES.in: Add it.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/certbot.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm index c11c9a66bd..dc072ea8da 100644 --- a/gnu/services/certbot.scm +++ b/gnu/services/certbot.scm @@ -125,4 +125,9 @@ (certbot-configuration (inherit config) (hosts (append (certbot-configuration-hosts config) - additional-hosts))))))) + additional-hosts))))) + (default-value (certbot-configuration)) + (description + "Automatically renew @url{https://letsencrypt.org, Let's +Encrypt} HTTPS certificates by adjusting the nginx web server configuration +and periodically invoking @command{certbot}."))) |