Update names.

This commit is contained in:
Hyperling 2021-02-14 08:04:58 -06:00
parent 7c09171315
commit fd9201d62e

View File

@ -2,12 +2,12 @@
# Use flatpaks because they're consistent! :) # Use flatpaks because they're consistent! :)
# Flatpak Pre-reqs # Flatpak Pre-reqs
- name: Workstation | Linux | Flatpak | Install Flatpak - name: Workstation | Linux | Flatpak Distro | Flatpak | Install
package: package:
name: flatpak name: flatpak
update_cache: yes update_cache: yes
- name: Workstation | Linux | Flatpak | Add Flathub for System - name: Workstation | Linux | Flatpak Distro | Flatpak | Add Flathub for System
flatpak_remote: flatpak_remote:
name: flathub name: flathub
state: present state: present
@ -16,7 +16,7 @@
# Flatpak Installs # Flatpak Installs
- name: Workstation | Linux | Flatpak | Installs - name: Workstation | Linux | Flatpak Distro | Flatpak | Application Installs
flatpak: flatpak:
name: "{{ item }}" name: "{{ item }}"
remote: flathub remote: flathub
@ -31,7 +31,7 @@
- com.google.AndroidStudio - com.google.AndroidStudio
- com.valvesoftware.Steam - com.valvesoftware.Steam
- name: Workstation | Linux | Flatpak | Uninstalls - name: Workstation | Linux | Flatpak Distro | Flatpak | Application Uninstalls
flatpak: flatpak:
name: "{{ item }}" name: "{{ item }}"
remote: flathub remote: flathub
@ -42,36 +42,36 @@
# Software not yet available in Flatpak form. # Software not yet available in Flatpak form.
- name: Workstation | Linux | Flatpak | Add Lutris PPA to Ubuntu - name: Workstation | Linux | Flatpak Distro | Package Manager | Add Lutris PPA (Ubuntu)
apt_repository: apt_repository:
repo: ppa:lutris-team/lutris repo: ppa:lutris-team/lutris
update_cache: yes update_cache: yes
state: present state: present
when: ansible_distribution == "Ubuntu" when: ansible_distribution == "Ubuntu"
- name: Workstation | Linux | Flatpak | Install Lutris from Package Manager - name: Workstation | Linux | Flatpak Distro | Package Manager | Install Lutris
package: package:
name: lutris name: lutris
state: present state: present
- name: Workstation | Linux | Flatpak | Install Firefox ESR from Package Manager - name: Workstation | Linux | Flatpak Distro | Package Manager | Install Firefox ESR
package: package:
name: "{{ firefox_esr }}" name: "{{ firefox_esr }}"
state: present state: present
- name: Workstation | Linux | Flatpak | Remove Firefox Normal for ESR - name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Firefox Normal
package: package:
name: name:
- "{{ firefox }}" - "{{ firefox }}"
state: absent state: absent
when: firefox != firefox_esr when: firefox != firefox_esr
- name: Workstation | Linux | Flatpak | Install VLC from Package Manager - name: Workstation | Linux | Flatpak Distro | Package Manager | Install VLC
package: package:
name: vlc name: vlc
state: present state: present
- name: Workstation | Linux | Flatpak | Remove Software From Package Manager - name: Workstation | Linux | Flatpak Distro | Package Manager | Remove Applciations
package: package:
name: name:
- "{{ thunderbird }}" - "{{ thunderbird }}"