diff --git a/tasks/workstation/linux/software/lutris.yml b/tasks/workstation/linux/software/lutris.yml index a12117f..1db294f 100644 --- a/tasks/workstation/linux/software/lutris.yml +++ b/tasks/workstation/linux/software/lutris.yml @@ -2,6 +2,10 @@ # Lutris for running Windows games not in Steam. # https://lutris.net/downloads +## Facts ## + +## Install Repo ## + - name: Workstation | Linux | Software | Lutris | Add PPA (Ubuntu) apt_repository: repo: ppa:lutris-team/lutris @@ -19,6 +23,8 @@ when: ansible_distribution in ("Debian") and gaming == true ignore_errors: yes +## Install Package ## + - name: Workstation | Linux | Software | Lutris | Install (besides ARM) package: name: @@ -27,6 +33,8 @@ when: ansible_architecture != "aarch64" and gaming == true ignore_errors: yes +## Uninstall Package ## + - name: Workstation | Linux | Software | Lutris | Uninstall (besides ARM) package: name: @@ -35,6 +43,8 @@ when: ansible_architecture != "aarch64" and gaming is not defined ignore_errors: yes +## Uninstall Repo ## + - name: Workstation | Linux | Software | Lutris | Remove PPA (Ubuntu) apt_repository: repo: ppa:lutris-team/lutris