From baceb10b827208cfe515f46ace609d789722797d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ndor?= Date: Thu, 19 Sep 2024 16:19:06 +0200 Subject: [PATCH] Add playbooks/update-yum.yaml --- playbooks/update-yum.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 playbooks/update-yum.yaml diff --git a/playbooks/update-yum.yaml b/playbooks/update-yum.yaml new file mode 100644 index 0000000..5196df6 --- /dev/null +++ b/playbooks/update-yum.yaml @@ -0,0 +1,8 @@ +--- +- hosts: all + + become: true + tasks: + - name: install updates + yum: name=* state=latest update_cache=yes + when: ansible_os_family == "RedHat" \ No newline at end of file