env-ansible/facts/package_names.yml

22 lines
555 B
YAML

---
# Define what the program name is on each OS so we can use package builtin. like this:
- name: Set Pop!_OS Package Names
ansible.builtin.set_fact:
firefox: firefox
thunderbird: thunderbird
when: ansible_distribution == "Pop!_OS"
- name: Set Ubuntu Package Names
ansible.builtin.set_fact:
firefox: firefox
thunderbird: thunderbird
when: ansible_distribution == "Ubuntu"
- name: Set FreeBSD Package Names
ansible.builtin.set_fact:
firefox: firefox
thunderbird: thunderbird
when: ansible_distribution == "FreeBSD"