21 lines
374 B
YAML
21 lines
374 B
YAML
|
---
|
||
|
- become: yes
|
||
|
block:
|
||
|
- name: Add i386 Architecture
|
||
|
command: dpkg --add-architecture i386
|
||
|
|
||
|
- name: Update APT Cache for i386
|
||
|
apt:
|
||
|
update_cache: true
|
||
|
|
||
|
- name: add signal gpg key
|
||
|
apt_repository:
|
||
|
repo: ppa:lutris-team/lutris
|
||
|
|
||
|
- name: install lutris
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
pkg:
|
||
|
- lutris
|
||
|
- wine
|
||
|
- steam
|