2025-04-03 16:57:45 +00:00
|
|
|
---
|
|
|
|
|
- hosts: "{{ target_hosts }}"
|
|
|
|
|
become: true
|
|
|
|
|
tasks:
|
|
|
|
|
- name: Update apt cache
|
|
|
|
|
ansible.builtin.apt:
|
|
|
|
|
update_cache: true
|
2025-04-03 17:11:57 +00:00
|
|
|
delegate_to: localhost
|
2025-04-03 16:57:45 +00:00
|
|
|
|
|
|
|
|
- name: Upgrade all packages
|
|
|
|
|
ansible.builtin.apt:
|
|
|
|
|
upgrade: dist
|
2025-04-03 17:08:20 +00:00
|
|
|
autoremove: true
|
2025-04-03 17:11:57 +00:00
|
|
|
delegate_to: localhost
|