feat: add clean up role

This commit is contained in:
Ivan R. 2024-06-22 11:57:39 +05:00
parent b4386e70bb
commit 7eecda7ccb
Signed by: lumin
GPG key ID: 927D3132247BDE4E
2 changed files with 16 additions and 0 deletions

4
cleanup.yml Normal file
View file

@ -0,0 +1,4 @@
- name: Cleanup
hosts: odhosts
roles:
- cleanup

View file

@ -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