commit 8997ce2cf87ccf42eaf40cb7032e18d44df29dec Author: Jagrit Thapar Date: Mon Jul 15 14:42:16 2024 +0530 add: initial ansible playbook 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 +