koji_builder: don't restart the old monolythic libvirtd

In Fedora libvirt switched to a collection of socket activated services
instead of a large single libvirtd service. Restarting that service
caused the socket activated ones to die and then libvirtd exited on
idle, leaving nothing handling virt connections.

So, lets stop trying to restart that and no need to notify other things
because they should idle out/restart on socket activation.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2024-11-23 08:56:43 -08:00
parent fbd38c1ff2
commit 5b9d067a31

View file

@ -230,8 +230,6 @@
- name: install libvirtd.conf
copy: src="{{ files }}/virthost/libvirtd.conf" dest=/etc/libvirt/libvirtd.conf
notify:
- restart libvirtd
tags:
- koji_builder
when: env != "staging"
@ -248,7 +246,6 @@
copy: src=network.conf dest=/etc/libvirt/network.conf
notify:
- restart virtnetworkd
- restart libvirtd
tags:
- koji_builder
when: env != "staging"