Include patching for RedHat

This commit is contained in:
2026-05-06 11:54:55 +02:00
parent a813165bdb
commit 8d8ec38856

View File

@@ -8,3 +8,11 @@
autoclean: yes
when: ansible_os_family == 'Debian'
notify: Reboot if required
# TODO consider including yum as fallback
- name: Patch RedHat-family hosts
ansible.builtin.dnf:
# Updates all packages
name: "*"
state: latest
when: ansible_os_family == 'RedHat'