From: Chen Qi <[email protected]> When do_package uses state cache and is not re-run but do_package_write_rpm is re-run, then we get the following error:
Exception: KeyError: 'getpwuid(): uid not found: 996' This is because libvirt does chown to polkitd in do_install and polkitd is from polkit. Here's an easy way to reproduce this issue: bitbake libvirt -c cleansstate && bitbake libvirt -c package && \ bitbake libvirt -c clean && bitbake libvirt -c package_write_rpm So make use of USERADD_DEPENDS to ensure polkitd exists to fix this issue. Signed-off-by: Chen Qi <[email protected]> --- recipes-extended/libvirt/libvirt_10.0.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-extended/libvirt/libvirt_10.0.0.bb b/recipes-extended/libvirt/libvirt_10.0.0.bb index a33b6980..22193ff3 100644 --- a/recipes-extended/libvirt/libvirt_10.0.0.bb +++ b/recipes-extended/libvirt/libvirt_10.0.0.bb @@ -11,6 +11,8 @@ DEPENDS = "bridge-utils gnutls libxml2 lvm2 avahi parted curl libpcap util-linux ${@bb.utils.contains('PACKAGECONFIG', 'polkit', 'shadow-native', '', d)} \ ${@bb.utils.contains('PACKAGECONFIG', 'gnutls', 'gnutls-native', '', d)}" +USERADD_DEPENDS = "${@bb.utils.contains('PACKAGECONFIG', 'polkit', 'polkit', '', d)}" + # libvirt-guests.sh needs gettext.sh # RDEPENDS:${PN} = "gettext-runtime" -- 2.25.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#8960): https://lists.yoctoproject.org/g/meta-virtualization/message/8960 Mute This Topic: https://lists.yoctoproject.org/mt/109457527/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
