ansible-role-common/tasks/update-Centos.yml

10 lines
199 B
YAML

---
# Common/Update: Install All Updates - CentOS Version
- name: update - Update and upgrade all packages
become: yes
ansible.builtin.yum:
name: "*"
state: latest
update_cache: yes