feat(update): add update task to common role

This commit is contained in:
Simon Cornet 2025-08-25 17:12:47 +02:00
commit de422a9f0a
2 changed files with 68 additions and 0 deletions

View file

@ -48,6 +48,11 @@
- name: "flush handlers"
ansible.builtin.meta: "flush_handlers"
- name: "apt - update"
ansible.builtin.import_tasks: "apt/update.yaml"
when: "ansible_os_family == 'Debian'"
tags: "apt-update"
- name: "apt - packages"
ansible.builtin.import_tasks: "apt/packages.yaml"
when: "ansible_os_family == 'Debian'"