From a044ce15c0cfb42a4a363f3c4d0ebff6d7f02342 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Mon, 5 Jan 2015 15:21:54 -0800 Subject: [PATCH] docker: fix flag parsing in docker wrapper script The dockerd script incorrectly parsed --graph=/some/path, breaking the early-docker service. --- .../docker/{docker-1.4.1.ebuild => docker-1.4.1-r1.ebuild} | 0 .../coreos-overlay/app-emulation/docker/files/dockerd | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename sdk_container/src/third_party/coreos-overlay/app-emulation/docker/{docker-1.4.1.ebuild => docker-1.4.1-r1.ebuild} (100%) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-1.4.1.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-1.4.1-r1.ebuild similarity index 100% rename from sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-1.4.1.ebuild rename to sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-1.4.1-r1.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd index f4730cf8d0..722b2e3d9f 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/files/dockerd @@ -11,8 +11,8 @@ parse_docker_args() { # treat --flag=foo and --flag foo identically if [[ "${flag}" == *=* ]]; then - flag="${flag%=*}" set -- "${flag#*=}" "$@" + flag="${flag%=*}" fi case "${flag}" in