From 5b9d067a3197d8391ce59046d3a0ef9357405a00 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 23 Nov 2024 08:56:43 -0800 Subject: [PATCH] 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 --- roles/koji_builder/tasks/main.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/roles/koji_builder/tasks/main.yml b/roles/koji_builder/tasks/main.yml index 9a4a4492f9..e17bdfbd9e 100644 --- a/roles/koji_builder/tasks/main.yml +++ b/roles/koji_builder/tasks/main.yml @@ -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"