From 7d846b7365f09df1d877111318c7b6632d102f5f Mon Sep 17 00:00:00 2001 From: Alan Moon Date: Fri, 28 Feb 2025 13:16:37 -0800 Subject: [PATCH] Add apt-upgrade.yaml --- apt-upgrade.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 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