Thomas Basler
a1a3091507
This commit consolidates common tasks like user creation which is needed by all applications into a single file.
25 lines
521 B
YAML
25 lines
521 B
YAML
---
|
|
|
|
- name: Enable contrib repositories
|
|
apt_repository:
|
|
repo: deb http://deb.debian.org/debian {{ ansible_distribution_release }} contrib
|
|
|
|
- name: Add i386 Architecture
|
|
command: dpkg --add-architecture i386
|
|
args:
|
|
creates: /var/lib/dpkg/arch
|
|
when: ansible_architecture != 'i386'
|
|
register: archrc
|
|
|
|
- name: Update APT Cache for i386
|
|
apt:
|
|
update_cache: true
|
|
when: archrc is defined and archrc.changed
|
|
|
|
- name: Install Estlcam dependencies
|
|
apt:
|
|
name:
|
|
- winetricks
|
|
- wine32
|
|
- xfwm4
|