2021-02-06 15:42:39 -06:00

31 lines
791 B
YAML

---
# Define program names per OS for package builtin.
# This is only for Workstation devices with UIs.
- name: Facts | Workstation | Package | Consistent
set_fact:
firefox: firefox
thunderbird: thunderbird
evolution: evolution
gnome_tweaks: gnome-tweaks
dconf_editor: dconf-editor
- name: Facts | Workstation | Package | Pop_OS! and Ubuntu
set_fact:
flatpak_distro: true
firefox_esr: firefox
when: ansible_distribution in ("Pop!_OS", "Ubuntu")
- name: Facts | Workstation | Package | Debian
set_fact:
flatpak_distro: true
firefox_esr: firefox-esr
when: ansible_distribution in ("Debian")
- name: Facts | Workstation | Package | FreeBSD
set_fact:
flatpak_distro: false
firefox_esr: firefox-esr
when: ansible_system == "FreeBSD"