mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
13 lines
305 B
YAML
13 lines
305 B
YAML
- name: install libreoffice
|
|
community.general.pacman:
|
|
name:
|
|
- ttf-liberation
|
|
- libreoffice-fresh
|
|
state: present
|
|
|
|
- name: install libreoffice language packages
|
|
community.general.pacman:
|
|
name: "libreoffice-fresh-{{ item }}"
|
|
state: present
|
|
loop: "{{libreoffice_languages}}"
|