From 16e38ec8d0f390d3a5e8ee89fe74246edba0bd7c Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Fri, 15 Oct 2021 09:34:18 -0400 Subject: podman: check for ipv6 in DISTRO_FEATURES When setting up networking, podman is looking for the ipv6tables executable. We have iptables in our rdepnds, but the ipv6 variant won't be available unless ipv6 is in DISTRO_FEATURES. We can use our distro feature check to detect the issue and alert the developer. Signed-off-by: Bruce Ashfield --- recipes-containers/podman/podman_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb index 912a135c..0261ffa9 100644 --- a/recipes-containers/podman/podman_git.bb +++ b/recipes-containers/podman/podman_git.bb @@ -7,7 +7,7 @@ DESCRIPTION = "Podman is a daemonless container engine for developing, \ " inherit features_check -REQUIRED_DISTRO_FEATURES ?= "seccomp" +REQUIRED_DISTRO_FEATURES ?= "seccomp ipv6" DEPENDS = " \ go-metalinter-native \ -- cgit v1.2.3-54-g00ecf