xoxys.ucs/tasks/users_groups.yml

14 lines
387 B
YAML
Raw Normal View History

---
- name: Create system groups
udm_group:
name: "{{ item.name }}"
description: "{{ item.description | default(omit) }}"
subpath: "{{ item.subpath | default(omit) }}"
ou: "{{ item.ou | default(omit) }}"
state: "{{ item.state | default('present') }}"
2019-08-27 08:25:49 +02:00
loop: "{{ ucs_system_groups }}"
loop_control:
label: "{{ item.name }}"
2018-11-20 23:37:37 +01:00
become: True
become_user: root