env-ansible/facts/general/package.yml

23 lines
607 B
YAML
Raw Normal View History

2020-12-28 20:06:41 -06:00
---
# Define program names per OS for package builtin.
# This file is for ALL systems and should not include UI components.
2020-12-28 20:06:41 -06:00
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | Package | Pop OS
set_fact:
2021-01-31 13:02:29 -06:00
sshfs: sshfs
locate: locate
2020-12-28 20:09:25 -06:00
when: ansible_distribution == "Pop!_OS"
2020-12-28 20:06:41 -06:00
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | Package | Debian and Ubuntu
set_fact:
2021-01-31 13:02:29 -06:00
sshfs: sshfs
locate: locate
when: ansible_distribution in ("Debian","Ubuntu")
2020-12-28 20:06:41 -06:00
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | Package | FreeBSD
set_fact:
2021-01-31 13:02:29 -06:00
sshfs: fusefs-sshfs
locate: htop # This is just a placeholder to prevent errors
when: ansible_system == "FreeBSD"