From d017523c7e25e8d9bab42296b2957e366ad9e027 Mon Sep 17 00:00:00 2001 From: lorentz Date: Mon, 23 Feb 2026 11:55:41 -0500 Subject: [PATCH] Add playbooks/patch.yml --- playbooks/patch.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 playbooks/patch.yml diff --git a/playbooks/patch.yml b/playbooks/patch.yml new file mode 100644 index 0000000..e7a2c72 --- /dev/null +++ b/playbooks/patch.yml @@ -0,0 +1,13 @@ +--- +- name: Patch Linux systems + hosts: all + become: true + + tasks: + - name: Update apt cache + apt: + update_cache: yes + + - name: Upgrade packages + apt: + upgrade: dist \ No newline at end of file