summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2026-06-15 14:12:38 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2026-06-15 14:12:38 +0000
commit263a45c610b622ac9b0aab2e715549b270ea6f6e (patch)
tree3894a2f1fd4d309701acc9565eb31fc88aa59755
parentc595d3c9b714a1d15fe8e5dc1038f9372d68dbdb (diff)
downloadmeta-virtualization-263a45c610b622ac9b0aab2e715549b270ea6f6e.tar.gz
packagegroup-lxc: pull in networking and templates explicitly
packagegroup-lxc is documented as the "ready-to-use LXC" group but its RDEPENDS only listed the lxc package itself, not the networking or templates sub-packages required for a functional LXC. With the matching change to the lxc recipe (RRECOMMENDS adding both sub-packages to anyone installing lxc), this packagegroup would now pick them up transitively — but listing them in RDEPENDS here keeps the packagegroup honest as a self-contained specification of what it provides, and guards against future BAD_RECOMMENDATIONS in a downstream distro silently turning packagegroup-lxc back into "just the binaries." This is the path container-image-host takes when VIRTUAL-RUNTIME_container_engine is set to "lxc", so it's also the path the just-added container-host-lxc profile fragment exercises. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-core/packagegroups/packagegroup-container.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-core/packagegroups/packagegroup-container.bb b/recipes-core/packagegroups/packagegroup-container.bb
index 77c3f11c..503a866b 100644
--- a/recipes-core/packagegroups/packagegroup-container.bb
+++ b/recipes-core/packagegroups/packagegroup-container.bb
@@ -31,6 +31,8 @@ RDEPENDS:${PN} = " \
31 31
32RDEPENDS:packagegroup-lxc = " \ 32RDEPENDS:packagegroup-lxc = " \
33 lxc \ 33 lxc \
34 lxc-networking \
35 lxc-templates \
34" 36"
35 37
36RDEPENDS:packagegroup-docker = " \ 38RDEPENDS:packagegroup-docker = " \