Ansible_workstation/tasks/arch_teacher.yml

22 lines
359 B
YAML

---
- name: Install teaching packages
pacman:
name:
- texlive-most
- gnuplot
- auto-multiple-choice
state: present
- name: Install perl-locale-codes (for auto-multiple-choice)
aur:
name: "{{ item }}"
use: makepkg
skip_installed: true
with_items:
- perl-locale-codes
become: yes
become_user: aur_builder