refac: use .yaml instead of .yml extension
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 24s
Lint Markdown files / markdown-lint (push) Successful in 4s

This commit is contained in:
2025-10-25 12:37:50 +02:00
parent 0db7c7265a
commit 22048124fd
9 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
---
- name: "Create unix group with random gid: {{ unix_group.key }}"
ansible.builtin.group:
name: "{{ unix_group.key }}"
state: "{{ unix_group.value.state | default('present') }}"
when: unix_group.value.gid is not defined or unix_group.value.gid is defined and unix_group.value.gid | length <= 0
- name: "Create unix group with pre-defined gid: {{ unix_group.key }}"
ansible.builtin.group:
name: "{{ unix_group.key }}"
gid: "{{ unix_group.value.gid }}"
state: "{{ unix_group.value.state | default('present') }}"
when: unix_group.value.gid is defined and unix_group.value.gid | length > 0