mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
services: Docker: Fix typo in configuration.
This is a follow-up to f0a09310e6
.
* gnu/services/docker.scm (docker-shepherd-service): Properly reference
variables in service definition.
This commit is contained in:
parent
475e3768fc
commit
e04b90607a
1 changed files with 5 additions and 5 deletions
|
@ -122,11 +122,11 @@ (define (docker-shepherd-service config)
|
|||
#$@(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"))
|
||||
|
|
Loading…
Reference in a new issue