Ansible_workstation/tasks/arch_teacher.yml

23 lines
377 B
YAML
Raw Normal View History

2019-11-16 16:31:39 +00:00
---
- name: Install teaching packages
pacman:
name:
- texlive-most
- gnuplot
- auto-multiple-choice
2020-03-14 07:58:23 +00:00
- xournalpp
2019-11-16 16:31:39 +00:00
state: present
2019-11-16 16:32:16 +00:00
- name: Install perl-locale-codes (for auto-multiple-choice)
2019-11-16 16:31:39 +00:00
aur:
name: "{{ item }}"
use: makepkg
skip_installed: true
with_items:
- perl-locale-codes
become: yes
become_user: aur_builder