2020-12-28 20:06:41 -06:00
|
|
|
---
|
2020-12-28 21:32:28 -06:00
|
|
|
# Define what the program name is on each OS so we can use package builtin.
|
2020-12-28 20:06:41 -06:00
|
|
|
|
|
|
|
- name: Set Pop!_OS Package Names
|
|
|
|
ansible.builtin.set_fact:
|
2020-12-28 20:10:53 -06:00
|
|
|
firefox: firefox
|
|
|
|
thunderbird: thunderbird
|
2020-12-28 20:09:25 -06:00
|
|
|
when: ansible_distribution == "Pop!_OS"
|
2020-12-28 20:06:41 -06:00
|
|
|
|
|
|
|
|
2020-12-28 20:36:23 -06:00
|
|
|
# TODO Needs tested
|
2020-12-28 20:06:41 -06:00
|
|
|
- name: Set Ubuntu Package Names
|
|
|
|
ansible.builtin.set_fact:
|
2020-12-28 20:10:53 -06:00
|
|
|
firefox: firefox
|
|
|
|
thunderbird: thunderbird
|
2020-12-28 20:06:41 -06:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
|
|
|
|
2020-12-28 20:36:23 -06:00
|
|
|
# TODO Needs tested
|
2020-12-28 20:06:41 -06:00
|
|
|
- name: Set FreeBSD Package Names
|
|
|
|
ansible.builtin.set_fact:
|
2020-12-28 20:10:53 -06:00
|
|
|
firefox: firefox
|
|
|
|
thunderbird: thunderbird
|
2020-12-28 20:06:41 -06:00
|
|
|
when: ansible_distribution == "FreeBSD"
|