services: docker: Fix configuration.
This is a follow-up to e04b90607a
.
* gnu/services/docker.scm
(docker-shepherd-service): Fix "enable-proxy?" configuration.
master
parent
9273f75dd6
commit
cd4bb173e0
|
@ -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?
|
||||
(list "--userland-proxy=true"
|
||||
#~(string-append
|
||||
"--userland-proxy-path=" #$proxy "/bin/proxy"))
|
||||
'("--userland-proxy=false"))
|
||||
(if #$enable-iptables?
|
||||
"--iptables"
|
||||
"--iptables=false"))
|
||||
|
|
Reference in New Issue