1
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-08-04 21:43:06 +02:00

Rename variable (matrix_user_groupname -> matrix_group_name)

This commit is contained in:
Slavi Pantaleev
2025-04-29 10:35:26 +03:00
parent 9fc5cdab33
commit 3ee7deb2d7
89 changed files with 279 additions and 278 deletions

View File

@@ -7,7 +7,7 @@
- name: Ensure Matrix group is created
ansible.builtin.group:
name: "{{ matrix_user_groupname }}"
name: "{{ matrix_group_name }}"
gid: "{{ omit if matrix_user_gid is none else matrix_user_gid }}"
state: present
system: "{{ matrix_group_system }}"
@@ -18,7 +18,7 @@
name: "{{ matrix_user_name }}"
uid: "{{ omit if matrix_user_uid is none else matrix_user_uid }}"
state: present
group: "{{ matrix_user_groupname }}"
group: "{{ matrix_group_name }}"
home: "{{ matrix_base_data_path }}"
create_home: false
system: "{{ matrix_user_system }}"