env-ansible/facts/general/package.yml

16 lines
432 B
YAML
Raw Normal View History

2020-12-28 20:06:41 -06:00
---
# Define program names for package builtin.
# This file is for ALL systems and should not include UI components.
2020-12-28 20:06:41 -06:00
- name: General | Facts | Package | apt
set_fact:
2021-01-31 13:02:29 -06:00
sshfs: sshfs
locate: locate
when: ansible_pkg_mgr == "apt"
2020-12-28 20:06:41 -06:00
- name: General | Facts | Package | FreeBSD
set_fact:
2021-01-31 13:02:29 -06:00
sshfs: fusefs-sshfs
locate: htop # Placeholder to prevent errors. locate builtin FreeBSD.
when: ansible_system == "FreeBSD"