From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQI0D-0003uW-6W for guix-patches@gnu.org; Sat, 16 Dec 2017 14:20:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQI0A-00073s-2o for guix-patches@gnu.org; Sat, 16 Dec 2017 14:20:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57199) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eQI0A-00073b-03 for guix-patches@gnu.org; Sat, 16 Dec 2017 14:20:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eQI09-0000e0-MP for guix-patches@gnu.org; Sat, 16 Dec 2017 14:20:01 -0500 Subject: [bug#29739] [PATCH] services: certbot: Fix certbot renewal job. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40831) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQHz0-0003Qn-1j for guix-patches@gnu.org; Sat, 16 Dec 2017 14:18:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQHyw-0006Qa-Ud for guix-patches@gnu.org; Sat, 16 Dec 2017 14:18:50 -0500 Received: from mira.cbaines.net ([2a01:7e00::f03c:91ff:fe69:8da9]:42300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQHyw-0006QC-P8 for guix-patches@gnu.org; Sat, 16 Dec 2017 14:18:46 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id CD39013E944 for ; Sat, 16 Dec 2017 19:18:43 +0000 (GMT) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 137dcfc7 for ; Sat, 16 Dec 2017 19:18:43 +0000 (UTC) From: Christopher Baines Date: Sat, 16 Dec 2017 19:18:43 +0000 Message-Id: <20171216191843.18428-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29739@debbugs.gnu.org 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 dc072ea8d..0d72a4b70 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 -- 2.15.1