mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-26 22:51:05 +01:00
Kevin Veen-Birkenbach
2c76f99dd1
git-subtree-dir: client-playbook git-subtree-mainline:e763d13570
git-subtree-split:13f29ce5f7
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}}"
|