fix(linter): get running
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 46s
Lint Markdown files / markdown-lint (push) Successful in 11s

This commit is contained in:
2025-04-14 22:47:03 +02:00
parent 762fde2274
commit a07d698f3c
6 changed files with 19 additions and 19 deletions

View File

@ -3,7 +3,7 @@
- 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)
- (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 }}"
- "{{ sudo_users_sudoers }}"