diff options
author | Patrick Wicki <patrick.wicki@siemens.com> | 2024-05-06 10:28:06 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-13 22:32:38 -0400 |
commit | 380eae7bdd14319069960f7eb8d82c0ec0608b8a (patch) | |
tree | 2a752e52cd7f01e2e70e2f010c58386bb2929a34 | |
parent | 992253f8714c7bccaade9dc6cda9d2f01c51b763 (diff) | |
download | meta-virtualization-380eae7bdd14319069960f7eb8d82c0ec0608b8a.tar.gz |
podman: require catatonit
Alternatively, we could add it to RRECOMMENDS. But I would say, given
its name, managing pods is part of podman's core functionality and that
requires catatonit, which is currently only pulled in for the ptest:
root@qemux86-64:~# podman pod create
Error: building local pause image: finding pause binary: exec: "catatonit": executable file not found in $PATH
Signed-off-by: Patrick Wicki <patrick.wicki@siemens.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/podman/podman_git.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-containers/podman/podman_git.bb b/recipes-containers/podman/podman_git.bb index 07c17449..cba685c0 100644 --- a/recipes-containers/podman/podman_git.bb +++ b/recipes-containers/podman/podman_git.bb | |||
@@ -150,7 +150,7 @@ VIRTUAL-RUNTIME_base-utils-nsenter ?= "util-linux-nsenter" | |||
150 | COMPATIBLE_HOST = "^(?!mips).*" | 150 | COMPATIBLE_HOST = "^(?!mips).*" |
151 | 151 | ||
152 | RDEPENDS:${PN} += "\ | 152 | RDEPENDS:${PN} += "\ |
153 | conmon ${VIRTUAL-RUNTIME_container_runtime} iptables libdevmapper ${VIRTUAL-RUNTIME_container_networking} ${VIRTUAL-RUNTIME_base-utils-nsenter} \ | 153 | catatonit conmon ${VIRTUAL-RUNTIME_container_runtime} iptables libdevmapper ${VIRTUAL-RUNTIME_container_networking} ${VIRTUAL-RUNTIME_base-utils-nsenter} \ |
154 | ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'fuse-overlayfs slirp4netns', '', d)} \ | 154 | ${@bb.utils.contains('PACKAGECONFIG', 'rootless', 'fuse-overlayfs slirp4netns', '', d)} \ |
155 | " | 155 | " |
156 | RRECOMMENDS:${PN} += "slirp4netns \ | 156 | RRECOMMENDS:${PN} += "slirp4netns \ |
@@ -167,7 +167,6 @@ RDEPENDS:${PN}-ptest += " \ | |||
167 | bash \ | 167 | bash \ |
168 | bats \ | 168 | bats \ |
169 | buildah \ | 169 | buildah \ |
170 | catatonit \ | ||
171 | coreutils \ | 170 | coreutils \ |
172 | file \ | 171 | file \ |
173 | gnupg \ | 172 | gnupg \ |