ansible-role-sudo/tasks/verify_vars.yml
Markus Pesch c7477a9c2a
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 12s
Ansible Linter / ansible-lint (push) Successful in 43s
fix: value must be stored as a dictionary/hash
2025-04-21 22:51:40 +02:00

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 }}"