32 lines
815 B
YAML
Raw Normal View History

2020-12-28 20:06:41 -06:00
---
# Define program names per OS for package builtin.
# This is only for Workstation devices with UIs.
2020-12-28 20:06:41 -06:00
- name: Facts | Workstation | Package | Pop_OS! and Ubuntu
set_fact:
2021-02-03 21:21:48 -06:00
flatpak_distro: true
firefox: firefox
firefox_esr: firefox
2020-12-28 20:10:53 -06:00
thunderbird: thunderbird
2021-01-31 12:58:37 -06:00
evolution: evolution
when: ansible_distribution in ("Pop!_OS", "Ubuntu")
2020-12-28 20:06:41 -06:00
- name: Facts | Workstation | Package | Debian
set_fact:
2021-02-03 21:21:48 -06:00
flatpak_distro: true
firefox: firefox
firefox_esr: firefox-esr
2020-12-28 20:10:53 -06:00
thunderbird: thunderbird
2021-01-31 12:58:37 -06:00
evolution: evolution
when: ansible_distribution in ("Debian")
2020-12-28 20:06:41 -06:00
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | Package | FreeBSD
set_fact:
flatpak_distro: false
firefox: firefox
firefox_esr: firefox-esr
2020-12-28 20:10:53 -06:00
thunderbird: thunderbird
2021-01-31 12:58:37 -06:00
evolution: evolution
when: ansible_system == "FreeBSD"