From 86b62a43f5fd83a9c4e44728f6d0454b0317f788 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Thu, 18 Sep 2025 15:43:45 -0400 Subject: [PATCH] Add update-hosts --- update-hosts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 update-hosts diff --git a/update-hosts b/update-hosts new file mode 100644 index 0000000..77aac57 --- /dev/null +++ b/update-hosts @@ -0,0 +1,11 @@ +- hosts: all + remote_user: ansible + vars: + ansible_host_key_checking: false + become: true + + tasks: + - name: Update and upgrade apt packages + apt: + update_cache: yes + upgrade: yes \ No newline at end of file