guix-commits
[Top][All Lists]
Advanced

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

branch master updated: services: Docker: Fix typo in configuration.


From: guix-commits
Subject: branch master updated: services: Docker: Fix typo in configuration.
Date: Mon, 21 Sep 2020 08:04:56 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e04b906  services: Docker: Fix typo in configuration.
e04b906 is described below

commit e04b90607ac903359c90c9bad1b67fb7ce2f0eb6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Sep 21 15:02:23 2020 +0300

    services: Docker: Fix typo in configuration.
    
    This is a follow-up to f0a09310e6ff2ed63770cb585c551ba94ce4a9d0.
    
    * gnu/services/docker.scm (docker-shepherd-service): Properly reference
    variables in service definition.
---
 gnu/services/docker.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/services/docker.scm b/gnu/services/docker.scm
index c7296d5..2f13c27 100644
--- a/gnu/services/docker.scm
+++ b/gnu/services/docker.scm
@@ -122,11 +122,11 @@ loop-back communications.")
                            #$@(if debug?
                                   '("--debug" "--log-level=debug")
                                   '())
-                           #$@(if enable-proxy?
-                                  '("--userland-proxy=true"
-                                    (string-append
-                                      "--userland-proxy-path=" proxy 
"/bin/proxy"))
-                                  '("--userland-proxy=false"))
+                           (if #$enable-proxy?
+                               '("--userland-proxy=true"
+                                 (string-append
+                                   "--userland-proxy-path=" #$proxy 
"/bin/proxy"))
+                               '("--userland-proxy=false"))
                            (if #$enable-iptables?
                                "--iptables"
                                "--iptables=false"))



reply via email to

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