Add playbooks/update-yum.yaml

This commit is contained in:
Sándor 2024-09-19 16:19:06 +02:00
parent 8ff2824588
commit baceb10b82

View File

@ -0,0 +1,8 @@
---
- hosts: all
become: true
tasks:
- name: install updates
yum: name=* state=latest update_cache=yes
when: ansible_os_family == "RedHat"