Markus Pesch
51bf2a08cf
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
287 B
YAML
10 lines
287 B
YAML
---
|
|
|
|
- name: Verify if not user and group exists for each entry
|
|
tags: [ testa ]
|
|
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 }}" |