This commit is contained in:
Calvin Steenbergen 2025-04-03 18:57:45 +02:00
parent e1d4e180d9
commit 3d2e1f67e3

12
linux-update.yaml Normal file
View file

@ -0,0 +1,12 @@
---
- hosts: "{{ target_hosts }}"
become: true
tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
- name: Upgrade all packages
ansible.builtin.apt:
upgrade: dist
autoremove: true