From a6f88557b0827b66faeef0c2c0251c1d4f75de88 Mon Sep 17 00:00:00 2001 From: Guocai He Date: Fri, 9 May 2025 14:50:28 +0800 Subject: [PATCH] libvirt: add groups of libvirt and virtlogin The systemd_sysusers_check logs: WARNING: wrlinux-image-std-1.0-r5 do_rootfs: Group libvirt has never been defined WARNING: wrlinux-image-std-1.0-r5 do_rootfs: Group virtlogin has never been defined This is because when libvirt is updated to v11.1.0, it involves: 2dd4f594ea tools: add sysusers file to create 'virtlogin' group 18f0160994 remote: add sysusers file to create 'libvirt' group To eliminate this warning, it is necessary to add these two groups. Signed-off-by: Guocai He Signed-off-by: Bruce Ashfield --- recipes-extended/libvirt/libvirt_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/libvirt/libvirt_git.bb b/recipes-extended/libvirt/libvirt_git.bb index 4c6b3bdd..7d694ac1 100644 --- a/recipes-extended/libvirt/libvirt_git.bb +++ b/recipes-extended/libvirt/libvirt_git.bb @@ -47,7 +47,7 @@ S = "${WORKDIR}/git" inherit meson gettext update-rc.d pkgconfig systemd useradd perlnative USERADD_PACKAGES = "${PN}" -GROUPADD_PARAM:${PN} = "-r qemu; -r kvm" +GROUPADD_PARAM:${PN} = "-r qemu; -r kvm; -r libvirt; -r virtlogin" USERADD_PARAM:${PN} = "-r -g qemu -G kvm qemu"