9 lines
274 B
YAML
9 lines
274 B
YAML
---
|
|
|
|
# - name: Verify if not user and group exists for each entry
|
|
# ansible.builtin.assert:
|
|
# that:
|
|
# - (item.user is defined and item.group is not defined) or
|
|
# (item.user is not defined and item.group is defined)
|
|
# with_items: "{{ sudo_users_sudoers }}"
|