Merge component 'engine' from git@github.com:moby/moby master

This commit is contained in:
GordonTheTurtle
2018-01-12 17:04:42 +00:00

View File

@ -59,9 +59,9 @@ func TestDaemonRestartKillContainers(t *testing.T) {
t.Fatal(err)
}
var args []string
args := []string{"--iptables=false"}
if liveRestoreEnabled {
args = []string{"--live-restore"}
args = append(args, "--live-restore")
}
d.StartWithBusybox(t, args...)