2019-10-06 22:41:31 +02:00
|
|
|
---
|
|
|
|
|
# Common/Update: Install All Updates
|
|
|
|
|
|
2023-04-28 23:25:25 +02:00
|
|
|
- name: Update - Update and upgrade all packages
|
2021-08-28 16:58:03 +02:00
|
|
|
ansible.builtin.include_tasks: "{{ item }}"
|
2019-10-06 22:41:31 +02:00
|
|
|
with_first_found:
|
2025-11-28 11:10:58 +01:00
|
|
|
- "update-{{ ansible_facts['distribution'] }}.yml"
|
|
|
|
|
- "update-{{ (override_os_family is defined) | ternary(override_os_family, ansible_facts['os_family']) }}.yml"
|
2020-01-26 17:09:52 +01:00
|
|
|
ignore_errors: true
|