From 733b173594d779aa69fa65be67c7aeb9cf59c0b7 Mon Sep 17 00:00:00 2001 From: Sam Al-Sapti Date: Sun, 28 Jan 2024 18:51:13 +0100 Subject: [PATCH] LKRG is broken --- roles/virt-common/tasks/main.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/roles/virt-common/tasks/main.yml b/roles/virt-common/tasks/main.yml index d897ccf..cdbeb8d 100644 --- a/roles/virt-common/tasks/main.yml +++ b/roles/virt-common/tasks/main.yml @@ -86,21 +86,16 @@ - name: Packages for QEMU instances when: virt_type == 'qemu' block: - - name: Install haveged and LKRG packages + - name: Install haveged ansible.builtin.dnf: - name: - - haveged - - lkrg + name: haveged state: present - - name: Ensure haveged and LKRG are enabled and running + - name: Ensure haveged is enabled and running ansible.builtin.service: - name: "{{ item }}" + name: haveged enabled: true state: started - loop: - - haveged - - lkrg - name: Configure firewall ansible.builtin.import_tasks: firewall.yml