diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2016-12-20 11:25:35 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-12-21 09:17:05 -0500 |
commit | bec00eb2c9fcecc71050ee6599ebfc1a861bde50 (patch) | |
tree | 2e70c2a2ab601222028438b65ba8f50a55380825 | |
parent | 2307ad473adbfc75d7b56ea34232717459737b63 (diff) | |
download | meta-virtualization-bec00eb2c9fcecc71050ee6599ebfc1a861bde50.tar.gz |
docker: cosmetic - fix indentation
cosmetic only, no changes in behavior:
* align all the DEPENDS, better readability
* fix indentation in do_install(): space -> tab
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-containers/docker/docker_git.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes-containers/docker/docker_git.bb b/recipes-containers/docker/docker_git.bb index 7b12ec24..b0fda350 100644 --- a/recipes-containers/docker/docker_git.bb +++ b/recipes-containers/docker/docker_git.bb | |||
@@ -35,7 +35,8 @@ S = "${WORKDIR}/git" | |||
35 | DOCKER_VERSION = "1.12.5" | 35 | DOCKER_VERSION = "1.12.5" |
36 | PV = "${DOCKER_VERSION}+git${SRCREV}" | 36 | PV = "${DOCKER_VERSION}+git${SRCREV}" |
37 | 37 | ||
38 | DEPENDS = "go-cross \ | 38 | DEPENDS = " \ |
39 | go-cross \ | ||
39 | go-cli \ | 40 | go-cli \ |
40 | go-pty \ | 41 | go-pty \ |
41 | go-context \ | 42 | go-context \ |
@@ -134,9 +135,9 @@ do_install() { | |||
134 | install -m 644 ${S}/contrib/init/systemd/docker.* ${D}/${systemd_unitdir}/system | 135 | install -m 644 ${S}/contrib/init/systemd/docker.* ${D}/${systemd_unitdir}/system |
135 | # replaces one copied from above with one that uses the local registry for a mirror | 136 | # replaces one copied from above with one that uses the local registry for a mirror |
136 | install -m 644 ${WORKDIR}/docker.service ${D}/${systemd_unitdir}/system | 137 | install -m 644 ${WORKDIR}/docker.service ${D}/${systemd_unitdir}/system |
137 | else | 138 | else |
138 | install -d ${D}${sysconfdir}/init.d | 139 | install -d ${D}${sysconfdir}/init.d |
139 | install -m 0755 ${WORKDIR}/docker.init ${D}${sysconfdir}/init.d/docker.init | 140 | install -m 0755 ${WORKDIR}/docker.init ${D}${sysconfdir}/init.d/docker.init |
140 | fi | 141 | fi |
141 | 142 | ||
142 | mkdir -p ${D}/usr/share/docker/ | 143 | mkdir -p ${D}/usr/share/docker/ |