commit f9607d2b7d9dca63ab122c03c1c13bd308abe263 Author: Josh Wright Date: Sat Jan 17 20:26:39 2026 -0500 Add site.yml diff --git a/site.yml b/site.yml new file mode 100644 index 0000000..a863467 --- /dev/null +++ b/site.yml @@ -0,0 +1,14 @@ +--- +- hosts: all + gather_facts: yes + become: yes + + tasks: + - name: Perform a dist-upgrade. + ansible.builtin.apt: + upgrade: dist + update_cache: yes + + - name: Remove dependencies that are no longer required. + ansible.builtin.apt: + autoremove: yes \ No newline at end of file