Message ID | 20251016074104.85537-3-dse@thaumatec.com |
---|---|
State | New |
Headers | show |
Series | cockpit: upgrade to 349 and fix some issues | expand |
diff --git a/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb b/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb index c9619d835a..522d129502 100644 --- a/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb +++ b/meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb @@ -172,8 +172,8 @@ FILES:${PN} += " \ ${nonarch_libdir}/firewalld \ " RDEPENDS:${PN} += "${PN}-bridge" -# Needs bash for /usr/libexec/cockpit-certificate-helper -RDEPENDS:${PN} += "bash" +# Needs bash and mv for /usr/libexec/cockpit-certificate-helper +RDEPENDS:${PN} += "bash coreutils" do_install:append() { pkgdatadir=${datadir}/cockpit
The BusyBox version of mv does not have the -Z flag for setting SELinux security context. This results in failure when the cockpit-certificate-helper script is executed. Depend the package on GNU Coreutils to make sure that the proper version of mv is installed. Signed-off-by: Daniel Semkowicz <dse@thaumatec.com> --- meta-webserver/recipes-webadmin/cockpit/cockpit_337.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)