mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
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.
This commit is contained in:
parent
ad564a06ad
commit
e8a051ee7c
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ (define certbot-renewal-jobs
|
|||
(string-concatenate
|
||||
(map (lambda (host)
|
||||
(string-append " -d " host))
|
||||
#$hosts))))))))))
|
||||
'#$hosts))))))))))
|
||||
|
||||
(define certbot-activation
|
||||
(match-lambda
|
||||
|
|
Loading…
Reference in a new issue