Add mutex warning when specifying -icc or -ip-forward and -iptables=false

Docker-DCO-1.1-Signed-off-by: Erik Hollensbe <github@hollensbe.org> (github: erikh)
Upstream-commit: 05f293e65eeb7d1c86ba5644ed8d682aaeddd53d
Component: engine
This commit is contained in:
Erik Hollensbe
2014-06-24 11:57:35 -07:00
parent 3d6c57f495
commit 58acc86336

View File

@ -95,6 +95,10 @@ func main() {
log.Fatal("You specified -b & --bip, mutually exclusive options. Please specify only one.")
}
if !*flEnableIptables && !*flInterContainerComm {
log.Fatal("You specified --iptables=false with --icc=false. ICC uses iptables to function. Please set --icc or --iptables to true.")
}
if *flDebug {
os.Setenv("DEBUG", "1")
}