2021-01-31 13:11:40 -06:00
|
|
|
---
|
2021-01-31 16:22:01 -06:00
|
|
|
# Define users and groups per OS type.
|
2021-01-31 13:11:40 -06:00
|
|
|
|
2021-02-02 21:28:17 -06:00
|
|
|
- name: Facts | Workstation | User | Linux
|
2021-01-31 17:10:39 -06:00
|
|
|
set_fact:
|
2021-01-31 13:11:40 -06:00
|
|
|
root_group: root
|
2021-01-31 15:38:46 -06:00
|
|
|
when: ansible_system == "Linux"
|
2021-01-31 13:11:40 -06:00
|
|
|
|
2021-01-31 16:22:01 -06:00
|
|
|
|
2021-02-02 21:28:17 -06:00
|
|
|
- name: Facts | Workstation | User | FreeBSD
|
2021-01-31 17:10:39 -06:00
|
|
|
set_fact:
|
2021-01-31 13:11:40 -06:00
|
|
|
root_group: wheel
|
2021-01-31 15:38:46 -06:00
|
|
|
when: ansible_system == "FreeBSD"
|