Files
ansible-role-sudo/tasks/verify_vars.yaml
Markus Pesch 6469d81fcf
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 17s
Lint Markdown files / markdown-lint (push) Successful in 4s
fix: rename files to .yaml
2025-11-23 16:19:51 +01: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 }}"