Variablize FreeBSD's loading of fusefs.

This commit is contained in:
2021-07-13 21:02:56 -05:00
parent 0d09ef4963
commit 67cea8ed34
3 changed files with 11 additions and 5 deletions

View File

@ -27,6 +27,12 @@
when: ansible_distribution == "Archlinux"
#- name: General | Facts | Service | FreeBSD
# set_fact:
# when: ansible_system == "FreeBSD"
- name: General | Facts | Service | Non-FreeBSD
set_fact:
load_fusefs: "echo ''"
when: ansible_system != "FreeBSD"
- name: General | Facts | Service | FreeBSD
set_fact:
load_fusefs: "kldload fusefs"
when: ansible_system == "FreeBSD"