24 lines
584 B
YAML
24 lines
584 B
YAML
---
|
|
# Define what the program name is on each OS so we can use package builtin.
|
|
|
|
- name: Set Pop!_OS Package Names
|
|
ansible.builtin.set_fact:
|
|
firefox: firefox
|
|
thunderbird: thunderbird
|
|
when: ansible_distribution == "Pop!_OS"
|
|
|
|
|
|
# TODO Needs tested
|
|
- name: Set Ubuntu Package Names
|
|
ansible.builtin.set_fact:
|
|
firefox: firefox
|
|
thunderbird: thunderbird
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
|
# TODO Needs tested
|
|
- name: Set FreeBSD Package Names
|
|
ansible.builtin.set_fact:
|
|
firefox: firefox
|
|
thunderbird: thunderbird
|
|
when: ansible_distribution == "FreeBSD" |