update-system/tasks/update-RedHat.yml

9 lines
143 B
YAML
Raw Normal View History

2021-01-30 18:50:13 +00:00
---
- name: install updates
become: yes
yum:
update_cache: yes
name: '*'
state: latest
when: ansible_os_family == "RedHat"