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