fix: rename files to .yaml
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 17s
Lint Markdown files / markdown-lint (push) Successful in 4s

This commit is contained in:
2025-11-23 16:19:51 +01:00
parent f2dc0be80d
commit 6469d81fcf
8 changed files with 99 additions and 4 deletions

8
tasks/verify_vars.yaml Normal file
View File

@@ -0,0 +1,8 @@
---
# - 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 }}"