From 0c4f4394ebe0786a4ba076a283e66b618660659e Mon Sep 17 00:00:00 2001 From: Luca Matteo Spoljarevic Date: Fri, 21 Nov 2025 19:23:33 +0100 Subject: [PATCH] Added DNF Updater --- health/dnfupdate.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 health/dnfupdate.yml diff --git a/health/dnfupdate.yml b/health/dnfupdate.yml new file mode 100644 index 0000000..b5109e1 --- /dev/null +++ b/health/dnfupdate.yml @@ -0,0 +1,9 @@ +--- +- name: DNF Updater for RHEL based Clients + hosts: all + become: true + +- name: Upgrade all packages + ansible.builtin.dnf: + name: "*" + state: latest