summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2017-12-22 16:03:04 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-12-28 11:12:28 -0500
commit09af87f0d866a6a53d31269de7c1711bc4fd3903 (patch)
tree2308df4e7c45fa587d04032b41c827217e0ac2e9
parent00a801aee140c91ae968ffad271fc85702ff80ff (diff)
downloadmeta-virtualization-09af87f0d866a6a53d31269de7c1711bc4fd3903.tar.gz
lxc: add missing RDEPENDS
When attempting to create a container using lxc-create -t download -n test -- no-validate --dist ubuntu --release \ xenial --arch amd64 the container creation will fail due to missing 'xz' and in the case of 'tar' due to invalid options if the busybox version of 'tar' is used. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--recipes-containers/lxc/lxc_2.0.8.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-containers/lxc/lxc_2.0.8.bb b/recipes-containers/lxc/lxc_2.0.8.bb
index b616e947..651eb72e 100644
--- a/recipes-containers/lxc/lxc_2.0.8.bb
+++ b/recipes-containers/lxc/lxc_2.0.8.bb
@@ -6,6 +6,8 @@ DEPENDS = "libxml2 libcap"
6RDEPENDS_${PN} = " \ 6RDEPENDS_${PN} = " \
7 rsync \ 7 rsync \
8 gzip \ 8 gzip \
9 xz \
10 tar \
9 libcap-bin \ 11 libcap-bin \
10 bridge-utils \ 12 bridge-utils \
11 dnsmasq \ 13 dnsmasq \