From 1bd040999263e5d24c69262b619e002eb36537ce Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sun, 7 Apr 2013 17:46:32 -0700 Subject: [PATCH] fix(app-emulation): fixup dirs and deps - add dep on iproute2 utility - create the /var/lib/ dirs for the var_overlayc --- .../coreos-overlay/app-emulation/docker/docker-9999.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-9999.ebuild index 184b45e36a..6072bfb398 100644 --- a/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/app-emulation/docker/docker-9999.ebuild @@ -21,6 +21,7 @@ DEPEND=">=dev-lang/go-1.0.2" RDEPEND=" app-emulation/lxc net-misc/bridge-utils + sys-apps/iproute2 app-arch/libarchive net-misc/curl " @@ -31,6 +32,9 @@ src_compile() { src_install() { dobin ${S}/bin/${PN} + dodir /var/lib/docker + dodir /var/lib/docker/graph + dodir /var/lib/docker/containers systemd_dounit "${FILESDIR}"/${PN}.service systemd_enable_service multi-user.target ${PN}.service }