podman uses pasta as the default rootless network command since 5.0.0, but only slirp4netns is available when building for Yocto.
This commit adds a containers.conf file setting slirp4netns as default rootless command if 'rootless' is set in PACKAGECONFIG Signed-off-by: Marcus Flyckt <[email protected]> --- recipes-containers/podman/podman_git.bb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb index 32de3f0c..b8e90406 100644 --- a/recipes-containers/podman/podman_git.bb +++ b/recipes-containers/podman/podman_git.bb @@ -117,6 +117,11 @@ do_install() { if ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'true', 'false', d)}; then install -d "${D}${sysconfdir}/sysctl.d" install -m 0644 "${WORKDIR}/50-podman-rootless.conf" "${D}${sysconfdir}/sysctl.d" + install -d "${D}${sysconfdir}/containers" + cat <<-EOF >> "${D}${sysconfdir}/containers/containers.conf" + [NETWORK] + default_rootless_network_cmd="slirp4netns" + EOF fi } -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#8789): https://lists.yoctoproject.org/g/meta-virtualization/message/8789 Mute This Topic: https://lists.yoctoproject.org/mt/106404631/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
