computer-playbook/roles/pc-libreoffice/tasks/main.yml

13 lines
305 B
YAML
Raw Normal View History

2021-11-13 18:08:49 +01:00
- name: install libreoffice
community.general.pacman:
name:
- ttf-liberation
- libreoffice-still
2021-11-13 18:08:49 +01:00
state: present
- name: install libreoffice language packages
community.general.pacman:
name: "libreoffice-still-{{ item }}"
2021-11-13 18:08:49 +01:00
state: present
loop: "{{libreoffice_languages}}"