From f07976966997ac279b2d57e83c16e79fc02ebedb Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Thu, 3 Apr 2025 17:17:04 -0500 Subject: [PATCH] added dist and full update playbooks --- dist-upgrade-all.yaml | 8 ++++++++ full-upgrade-all.yaml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 dist-upgrade-all.yaml create mode 100644 full-upgrade-all.yaml diff --git a/dist-upgrade-all.yaml b/dist-upgrade-all.yaml new file mode 100644 index 0000000..d097caa --- /dev/null +++ b/dist-upgrade-all.yaml @@ -0,0 +1,8 @@ +- hosts: all + tasks: + - name: update system + ansible.builtin.apt: + update_cache: yes + autoclean: yes + autoremove: yes + upgrade: dist \ No newline at end of file diff --git a/full-upgrade-all.yaml b/full-upgrade-all.yaml new file mode 100644 index 0000000..d097caa --- /dev/null +++ b/full-upgrade-all.yaml @@ -0,0 +1,8 @@ +- hosts: all + tasks: + - name: update system + ansible.builtin.apt: + update_cache: yes + autoclean: yes + autoremove: yes + upgrade: dist \ No newline at end of file