2021-02-02 21:28:17 -06:00

13 lines
270 B
YAML

---
# Define users and groups per OS type.
- name: Facts | Workstation | User | Linux
set_fact:
root_group: root
when: ansible_system == "Linux"
- name: Facts | Workstation | User | FreeBSD
set_fact:
root_group: wheel
when: ansible_system == "FreeBSD"