Ansible/health/dnfupdate.yml
Luca Matteo Spoljarevic b28f487d4b Fixed errors
2025-11-21 19:43:31 +01:00

12 lines
230 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
become: true