Ansible/health/dnfupdate.yml
Luca Matteo Spoljarevic f73d95249c Fixed formatting
2025-11-21 19:35:28 +01:00

11 lines
223 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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