Ansible_workstation/tasks/wine.yml

35 lines
755 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
2018-08-25 07:12:23 +00:00
- name: Update pacman cache
pacman:
update_cache: yes
2019-04-18 14:22:20 +00:00
- name: Install WINE
2018-08-25 06:59:23 +00:00
pacman:
name:
- lib32-libglvnd # wine has multiple fulfilments for lib32-libgl
- wine
- winetricks
- wine_gecko
- wine-mono
# Audio
- lib32-alsa-plugins
- lib32-libpulse
- lib32-openal
2018-08-25 06:59:23 +00:00
state: present