aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2017-12-16 19:14:06 +0000
committerChristopher Baines <mail@cbaines.net>2017-12-17 20:37:12 +0000
commite8a051ee7c140886bce8dcd191cb10918b2d4078 (patch)
tree1c91d0a92aea0f59683b069ea2d345515b4fddea
parentad564a06ad3a58027888fe7b71f0d5563a019c08 (diff)
downloadguix-e8a051ee7c140886bce8dcd191cb10918b2d4078.tar
guix-e8a051ee7c140886bce8dcd191cb10918b2d4078.tar.gz
services: certbot: Fix certbot renewal job.
Quote the list of hosts, to avoid generating a broken job definition. * gnu/services/certbot.scm (certbot-renewal-jobs): Quote the hosts when passing them in to the job gexp.
-rw-r--r--gnu/services/certbot.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index dc072ea8da..0d72a4b700 100644
--- a/gnu/services/certbot.scm
+++ b/gnu/services/certbot.scm
@@ -72,7 +72,7 @@
(string-concatenate
(map (lambda (host)
(string-append " -d " host))
- #$hosts))))))))))
+ '#$hosts))))))))))
(define certbot-activation
(match-lambda