commit 7d846b7365f09df1d877111318c7b6632d102f5f Author: Alan Moon Date: Fri Feb 28 13:16:37 2025 -0800 Add apt-upgrade.yaml diff --git a/apt-upgrade.yaml b/apt-upgrade.yaml new file mode 100644 index 0000000..ed9348b --- /dev/null +++ b/apt-upgrade.yaml @@ -0,0 +1,7 @@ +- hosts: all + become: true + tasks: + - name: Upgrade All Packages + apt: + upgrade: yes + update_cache: yes \ No newline at end of file