LKRG is broken

This commit is contained in:
Sam A. 2024-01-28 18:51:13 +01:00
parent 165371e969
commit 733b173594
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 4 additions and 9 deletions

View File

@ -86,21 +86,16 @@
- name: Packages for QEMU instances - name: Packages for QEMU instances
when: virt_type == 'qemu' when: virt_type == 'qemu'
block: block:
- name: Install haveged and LKRG packages - name: Install haveged
ansible.builtin.dnf: ansible.builtin.dnf:
name: name: haveged
- haveged
- lkrg
state: present state: present
- name: Ensure haveged and LKRG are enabled and running - name: Ensure haveged is enabled and running
ansible.builtin.service: ansible.builtin.service:
name: "{{ item }}" name: haveged
enabled: true enabled: true
state: started state: started
loop:
- haveged
- lkrg
- name: Configure firewall - name: Configure firewall
ansible.builtin.import_tasks: firewall.yml ansible.builtin.import_tasks: firewall.yml