Add update-apt-packages.yaml

This commit is contained in:
2025-06-01 22:27:19 +02:00
parent a193bad0b5
commit 5e0dadac8d
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
---
- name: Update APT packages
hosts: all
become: true
tasks:
- name: Update APT package index
apt:
update_cache: true
upgrade: yes