Files
dotfiles/config/ansible/tasks/workstations/purge-libreoffice.yml
Menno van Leeuwen 085d037f77
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 48s
Nix Format Check / check-format (push) Failing after 1m49s
Python Lint Check / check-python (push) Failing after 33s
cachyos compatibility
2025-07-18 10:13:33 +02:00

22 lines
489 B
YAML

---
- name: Purge LibreOffice and related packages
become: true
ansible.builtin.apt:
name:
- libreoffice*
- libreoffice-common
- libreoffice-core
- libreoffice-writer
- libreoffice-calc
- libreoffice-impress
- libreoffice-draw
- libreoffice-base
- libreoffice-math
- libreoffice-gnome
- libreoffice-gtk3
state: absent
purge: true
autoremove: true
update_cache: true
when: ansible_pkg_mgr == 'apt'