summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-10-15 09:34:18 -0400
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-10-18 13:35:22 -0400
commit16e38ec8d0f390d3a5e8ee89fe74246edba0bd7c (patch)
tree668b69233c07822564e613ce733347379085fe93
parent6d109cda089b73064f2afd7009ba0d37239613e1 (diff)
downloadmeta-virtualization-16e38ec8d0f390d3a5e8ee89fe74246edba0bd7c.tar.gz
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 <bruce.ashfield@gmail.com>
-rw-r--r--recipes-containers/podman/podman_git.bb2
1 files changed, 1 insertions, 1 deletions
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, \
7 " 7 "
8 8
9inherit features_check 9inherit features_check
10REQUIRED_DISTRO_FEATURES ?= "seccomp" 10REQUIRED_DISTRO_FEATURES ?= "seccomp ipv6"
11 11
12DEPENDS = " \ 12DEPENDS = " \
13 go-metalinter-native \ 13 go-metalinter-native \