diff --git a/.gitignore b/.gitignore index e69de29..dbe9c82 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +.vscode/ \ No newline at end of file diff --git a/playbooks/update-apt-packages.yaml b/playbooks/update-apt-packages.yaml new file mode 100644 index 0000000..3a2c49f --- /dev/null +++ b/playbooks/update-apt-packages.yaml @@ -0,0 +1,9 @@ +--- +- name: Update APT packages + hosts: all + become: true + tasks: + - name: Update APT package index + apt: + update_cache: true + upgrade: yes