guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: services: certbot: Fix certbot renewal job.


From: Christopher Baines
Subject: 01/01: services: certbot: Fix certbot renewal job.
Date: Sun, 17 Dec 2017 15:37:51 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit e8a051ee7c140886bce8dcd191cb10918b2d4078
Author: Christopher Baines <address@hidden>
Date:   Sat Dec 16 19:14:06 2017 +0000

    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.
---
 gnu/services/certbot.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/services/certbot.scm b/gnu/services/certbot.scm
index dc072ea..0d72a4b 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]