added role latex

This commit is contained in:
Kevin Veen-Birkenbach 2022-10-13 18:29:15 +02:00
parent 772d9f0cc4
commit ca3459f178
3 changed files with 16 additions and 0 deletions

View File

@ -25,6 +25,12 @@
roles: roles:
- driver-intel - driver-intel
- name: application-latex
hosts: latex_hosts
become: true
roles:
- application-latex
- name: GNOME setup - name: GNOME setup
hosts: gnome_hosts hosts: gnome_hosts
become: true become: true

View File

@ -0,0 +1,3 @@
# application-latex
More packages you will find here: https://wiki.archlinux.org/title/TeX_Live

View File

@ -0,0 +1,7 @@
- name: install latex software
community.general.pacman:
name:
- texlive-latexextra
- texlive-lang
- texlive-langextra
state: present