diff --git a/localhost.yml b/localhost.yml index 3aadd94..e10e680 100644 --- a/localhost.yml +++ b/localhost.yml @@ -7,3 +7,6 @@ - java - jetbrains - compton + - signal + - virtual + - lutris diff --git a/roles/java/tasks/openjdk-11.yml b/roles/java/tasks/openjdk-11.yml index d7b851a..be9acc6 100644 --- a/roles/java/tasks/openjdk-11.yml +++ b/roles/java/tasks/openjdk-11.yml @@ -4,4 +4,4 @@ apt: update_cache: yes pkg: - - openjdk-8-jdk + - openjdk-11-jdk diff --git a/roles/lutris/tasks/main.yml b/roles/lutris/tasks/main.yml new file mode 100644 index 0000000..8480683 --- /dev/null +++ b/roles/lutris/tasks/main.yml @@ -0,0 +1,21 @@ +--- +- 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 \ No newline at end of file diff --git a/roles/signal/tasks/main.yml b/roles/signal/tasks/main.yml new file mode 100644 index 0000000..5a1aca4 --- /dev/null +++ b/roles/signal/tasks/main.yml @@ -0,0 +1,19 @@ +--- +- become: yes + block: + - name: add signal gpg key + apt_key: + url: https://updates.signal.org/desktop/apt/keys.asc + state: present + + - name: add signal repo + apt_repository: + repo: deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main + state: present + filename: signal-xenial + + - name: install docker + apt: + update_cache: yes + pkg: + - signal-desktop \ No newline at end of file