Depends about podman rootless
"Yiding Liu (Fujitsu)" <[email protected]>
| Newsgroups | org.yoctoproject.lists.meta-virtualization |
|---|---|
| Message-ID | <TY3PR01MB101107358F0B9DB8423E4529A9B7AA@TY3PR01MB10110.jpnprd01.prod.outlook.com> |
Hi Bruce
When I try to run container with podman rootless, it showed following error:
$ podman run -it xxx
Error: could not find pasta, the network namespace can't be configured: exec: "pasta": executable file not found in $PATH
Which means pasta is required by podman rootless.
Pasta command is provided by passt recipe, so I want to send a patch to fix this issue like
diff --git a/recipes-core/packagegroups/packagegroup-container.bb b/recipes-core/packagegroups/packagegroup-container.bb
index b94e6799..c861e508 100644
--- a/recipes-core/packagegroups/packagegroup-container.bb
+++ b/recipes-core/packagegroups/packagegroup-container.bb
@@ -39,6 +39,7 @@ RDEPENDS:packagegroup-docker = " \
RDEPENDS:packagegroup-podman = " \
podman \
+ passt \
"
What do you think about my suggestion?