From 8997ce2cf87ccf42eaf40cb7032e18d44df29dec Mon Sep 17 00:00:00 2001 From: Jagrit Thapar Date: Mon, 15 Jul 2024 14:42:16 +0530 Subject: [PATCH] add: initial ansible playbook --- ansible/update-apt-repo.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ansible/update-apt-repo.yaml diff --git a/ansible/update-apt-repo.yaml b/ansible/update-apt-repo.yaml new file mode 100644 index 0000000..34e4ae5 --- /dev/null +++ b/ansible/update-apt-repo.yaml @@ -0,0 +1,9 @@ +--- +- name: Update APT Repositories + hosts: all + become: yes + tasks: + - name: Update APT package index + apt: + update_cache: yes +