From 6472403c201fdfb3470a0296d7c68b749dc5e1d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Mon, 4 Jan 2021 18:03:55 +0000 Subject: [PATCH] rpm: fix ownership of the swtpm log directory MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit As soon as a guest using a device is launched, libvirt will change the ownership to 'tss' user and group, with mode 0730, which will cause RPM verify to then fail. Reviewed-by: Laine Stump Signed-off-by: Daniel P. Berrangé --- libvirt.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt.spec.in b/libvirt.spec.in index 2e026b0423..ce1a8d7078 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -1747,7 +1747,7 @@ exit 0 %{_datadir}/augeas/lenses/tests/test_libvirtd_qemu.aug %{_libdir}/%{name}/connection-driver/libvirt_driver_qemu.so %dir %attr(0711, root, root) %{_localstatedir}/lib/libvirt/swtpm/ -%dir %attr(0711, root, root) %{_localstatedir}/log/swtpm/libvirt/qemu/ +%dir %attr(0730, tss, tss) %{_localstatedir}/log/swtpm/libvirt/qemu/ %{_bindir}/virt-qemu-run %{_mandir}/man1/virt-qemu-run.1* %endif -- 2.47.2