Add apt-upgrade.yaml

This commit is contained in:
Alan Moon 2025-02-28 13:16:37 -08:00
commit 7d846b7365

7
apt-upgrade.yaml Normal file
View File

@ -0,0 +1,7 @@
- hosts: all
become: true
tasks:
- name: Upgrade All Packages
apt:
upgrade: yes
update_cache: yes