13 lines
270 B
YAML
Raw Normal View History

---
# Define users and groups per OS type.
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | User | Linux
set_fact:
root_group: root
when: ansible_system == "Linux"
2021-02-02 21:28:17 -06:00
- name: Facts | Workstation | User | FreeBSD
set_fact:
root_group: wheel
when: ansible_system == "FreeBSD"