10 lines
331 B
YAML
10 lines
331 B
YAML
---
|
|
# Common/Update: Install All Updates
|
|
|
|
- name: Update - Update and upgrade all packages
|
|
ansible.builtin.include_tasks: "{{ item }}"
|
|
with_first_found:
|
|
- "update-{{ ansible_distribution }}.yml"
|
|
- "update-{{ (override_os_family is defined) | ternary(override_os_family, ansible_os_family) }}.yml"
|
|
ignore_errors: true
|