ansible/playbooks/update-yum.yaml

8 lines
159 B
YAML
Raw Normal View History

2024-09-19 16:19:06 +02:00
---
- hosts: all
become: true
tasks:
- name: install updates
yum: name=* state=latest update_cache=yes
when: ansible_os_family == "RedHat"