Files
vms/ansible/roles/latest/tasks/default.yml
T

10 lines
219 B
YAML
Raw Normal View History

2023-08-13 18:44:20 -05:00
- name: Update all the things
become: true
ansible.builtin.package: # noqa package-latest
name: "*"
state: latest
update_cache: true
register: _update_all
retries: 3
until: _update_all is success