2019-10-06 20:41:31 +00:00
|
|
|
---
|
|
|
|
# Common/Update: Install All Updates
|
|
|
|
|
2023-04-28 21:25:25 +00:00
|
|
|
- name: Update - Update and upgrade all packages
|
2021-08-28 14:58:03 +00:00
|
|
|
ansible.builtin.include_tasks: "{{ item }}"
|
2019-10-06 20:41:31 +00:00
|
|
|
with_first_found:
|
|
|
|
- "update-{{ ansible_distribution }}.yml"
|
2023-04-28 21:25:25 +00:00
|
|
|
- "update-{{ (override_os_family is defined) | ternary(override_os_family, ansible_os_family) }}.yml"
|
2020-01-26 16:09:52 +00:00
|
|
|
ignore_errors: true
|