2020-12-28 20:06:41 -06:00
|
|
|
---
|
2021-01-31 16:22:01 -06:00
|
|
|
# Define program names per OS for package builtin.
|
2020-12-28 20:06:41 -06:00
|
|
|
|
2021-01-31 16:22:01 -06:00
|
|
|
- name: Set Pop OS Package Names
|
2021-01-31 17:10:39 -06:00
|
|
|
set_fact:
|
2021-01-31 13:02:29 -06:00
|
|
|
firefox: firefox-esr
|
2020-12-28 20:10:53 -06:00
|
|
|
thunderbird: thunderbird
|
2021-01-31 12:58:37 -06:00
|
|
|
evolution: evolution
|
2021-01-31 13:02:29 -06:00
|
|
|
sshfs: sshfs
|
2021-02-02 20:27:15 -06:00
|
|
|
locate: locate
|
2020-12-28 20:09:25 -06:00
|
|
|
when: ansible_distribution == "Pop!_OS"
|
2020-12-28 20:06:41 -06:00
|
|
|
|
|
|
|
|
2021-01-31 17:21:39 -06:00
|
|
|
- name: Set Debian and Ubuntu Package Names
|
2021-01-31 17:10:39 -06:00
|
|
|
set_fact:
|
2021-01-31 13:02:29 -06:00
|
|
|
firefox: firefox-esr
|
2020-12-28 20:10:53 -06:00
|
|
|
thunderbird: thunderbird
|
2021-01-31 12:58:37 -06:00
|
|
|
evolution: evolution
|
2021-01-31 13:02:29 -06:00
|
|
|
sshfs: sshfs
|
2021-02-02 20:27:15 -06:00
|
|
|
locate: locate
|
2021-01-31 16:22:01 -06:00
|
|
|
when: ansible_distribution in ("Debian","Ubuntu")
|
2020-12-28 20:06:41 -06:00
|
|
|
|
|
|
|
|
|
|
|
- name: Set FreeBSD Package Names
|
2021-01-31 17:10:39 -06:00
|
|
|
set_fact:
|
2021-01-31 13:02:29 -06:00
|
|
|
firefox: firefox-esr
|
2020-12-28 20:10:53 -06:00
|
|
|
thunderbird: thunderbird
|
2021-01-31 12:58:37 -06:00
|
|
|
evolution: evolution
|
2021-01-31 13:02:29 -06:00
|
|
|
sshfs: fusefs-sshfs
|
2021-02-02 20:31:17 -06:00
|
|
|
locate: htop # This is just a placeholder to prevent errors
|
2020-12-28 20:06:41 -06:00
|
|
|
when: ansible_distribution == "FreeBSD"
|