Ansible/health/dnfupdate.yml
Luca Matteo Spoljarevic 0f4b8652b4 Fixed errors
2025-11-21 19:46:17 +01:00

10 lines
210 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