feat: add clean up role
This commit is contained in:
parent
b4386e70bb
commit
7eecda7ccb
2 changed files with 16 additions and 0 deletions
4
cleanup.yml
Normal file
4
cleanup.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Cleanup
|
||||
hosts: odhosts
|
||||
roles:
|
||||
- cleanup
|
12
roles/cleanup/tasks/main.yml
Normal file
12
roles/cleanup/tasks/main.yml
Normal 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
|
Loading…
Reference in a new issue