Ansible_workstation/tasks/wine.yml

31 lines
661 B
YAML
Raw Normal View History

2018-08-25 06:59:23 +00:00
---
2018-08-25 07:31:10 +00:00
- name: "add multilib"
2018-08-25 07:08:53 +00:00
lineinfile:
2018-08-25 07:31:10 +00:00
dest: "/etc/pacman.conf"
state: "present"
line: "[multilib]"
regexp: "^\\[multilib\\]"
insertafter: "^#\\[multilib\\]"
- name: "add multilib (cont)"
lineinfile:
dest: "/etc/pacman.conf"
state: "present"
line: "Include = /etc/pacman.d/mirrorlist"
insertafter: "^\\[multilib\\]"
regexp: "Include = /etc/pacman.d/mirrorlist"
2018-08-25 07:08:53 +00:00
2020-01-27 14:36:12 +00:00
- name: Install WINE packages
2020-01-27 14:20:02 +00:00
pacman:
name:
2020-01-27 14:20:02 +00:00
- lib32-libglvnd
- wine
- winetricks
- wine_gecko
- wine-mono
- lib32-alsa-plugins
- lib32-libpulse
- lib32-openal
2018-08-25 06:59:23 +00:00
state: present
2020-01-27 14:36:12 +00:00
update-cache: yes