mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
Added role libreoffice
This commit is contained in:
parent
3f9156c53e
commit
9291240bba
@ -9,3 +9,8 @@
|
|||||||
become: true
|
become: true
|
||||||
roles:
|
roles:
|
||||||
- games
|
- games
|
||||||
|
- name: setup libreoffice hosts
|
||||||
|
hosts: libreoffice_hosts
|
||||||
|
become: true
|
||||||
|
roles:
|
||||||
|
- libreoffice
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
- supertuxkart
|
- supertuxkart
|
||||||
- gnuchess
|
- gnuchess
|
||||||
- sauerbraten
|
- sauerbraten
|
||||||
- assaultcube
|
|
||||||
- minetest
|
- minetest
|
||||||
- mari0
|
- mari0
|
||||||
- retroarch
|
- retroarch
|
||||||
|
@ -37,21 +37,6 @@
|
|||||||
# browsers
|
# browsers
|
||||||
- chromium
|
- chromium
|
||||||
|
|
||||||
# office software
|
|
||||||
- ttf-liberation
|
|
||||||
- libreoffice-fresh
|
|
||||||
- libreoffice-fresh-de
|
|
||||||
- libreoffice-fresh-eo
|
|
||||||
- libreoffice-fresh-es
|
|
||||||
- libreoffice-fresh-nl
|
|
||||||
|
|
||||||
# spelling software
|
|
||||||
- hunspell
|
|
||||||
- hunspell-de
|
|
||||||
- hunspell-es_es
|
|
||||||
- hunspell-en_US
|
|
||||||
- hunspell-nl
|
|
||||||
|
|
||||||
# video/picture manipulation
|
# video/picture manipulation
|
||||||
- gimp
|
- gimp
|
||||||
- blender
|
- blender
|
||||||
|
10
roles/hunspell/tasks/main.yml
Normal file
10
roles/hunspell/tasks/main.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
- name: install hunspell
|
||||||
|
community.general.pacman:
|
||||||
|
name: hunspell
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: install hunspell language packages
|
||||||
|
community.general.pacman:
|
||||||
|
name: "hunspell-{{ item }}"
|
||||||
|
state: present
|
||||||
|
loop: "{{hunspell_languages}}"
|
2
roles/libreoffice/meta/main.yml
Normal file
2
roles/libreoffice/meta/main.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
dependencies:
|
||||||
|
- hunspell
|
12
roles/libreoffice/tasks/main.yml
Normal file
12
roles/libreoffice/tasks/main.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
- 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}}"
|
Loading…
Reference in New Issue
Block a user