Ansible/health/dnfupdate.yml
Luca Matteo Spoljarevic 937ecc513e Fixed formatting
2025-11-21 19:37:42 +01:00

11 lines
211 B
YAML

---
- name: DNF Updater for RHEL-based clients
hosts: all
become: true
tasks:
- name: Upgrade all packages
ansible.builtin.dnf:
name: "*"
state: latest
update_cache: yes