Compare commits

...

2 Commits

Author SHA1 Message Date
ed3f2098d9 style(vscode): set correct file association
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 12s
Ansible Linter / ansible-lint (push) Successful in 2m45s
2025-04-21 22:34:19 +02:00
1e2bcabc7f fix: value must be stored as a dictionary/hash 2025-04-21 22:33:35 +02:00
2 changed files with 15 additions and 2 deletions

14
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"ansible.python.interpreterPath": "/bin/python",
"files.associations": {
"**/.gitea/**/*.yml": "yaml",
"**/.gitea/**/*.yaml": "yaml",
".drone.yml": "yaml",
"docker-compose*.yml": "dockercompose",
"*.yml": "ansible",
"*.yaml": "ansible",
".yamllint": "yaml",
".yamllint.yml": "yaml",
".yamllint.yaml": "yaml"
}
}

View File

@ -5,5 +5,4 @@
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 }}"
with_items: "{{ sudo_users_sudoers }}"