diff --git a/cleanup.yml b/cleanup.yml new file mode 100644 index 0000000..3b4dc5b --- /dev/null +++ b/cleanup.yml @@ -0,0 +1,4 @@ +- name: Cleanup + hosts: odhosts + roles: + - cleanup diff --git a/roles/cleanup/tasks/main.yml b/roles/cleanup/tasks/main.yml new file mode 100644 index 0000000..25f4467 --- /dev/null +++ b/roles/cleanup/tasks/main.yml @@ -0,0 +1,12 @@ +- name: Remove some qt apps + become: true + ansible.builtin.apt: + pkg: + - plasma-desktop + - plasma-discover + - plasma-workspace + - plasma-framework + - dolphin + - plasma-systemmonitor + state: absent + autoremove: yes