mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-06 00:48:03 +02:00
13 lines
371 B
YAML
13 lines
371 B
YAML
- name: install libreoffice
|
|
community.general.pacman:
|
|
name:
|
|
- ttf-liberation
|
|
- "libreoffice-{{ applications.libreoffice.flavor }}"
|
|
state: present
|
|
|
|
- name: install libreoffice language packages
|
|
community.general.pacman:
|
|
name: "libreoffice-{{ applications.libreoffice.flavor }}-{{ item }}"
|
|
state: present
|
|
loop: "{{libreoffice_languages}}"
|