Skip to content

Commit

Permalink
Allow alloy_user_groups variable again (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjezek authored Oct 15, 2024
1 parent c9000d1 commit ecdb42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/alloy/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- name: Create alloy user
ansible.builtin.user:
name: "{{ alloy_service_user }}"

Check warning on line 15 in roles/alloy/tasks/install.yml

View workflow job for this annotation

GitHub Actions / Perform Linting

jinja[spacing]

Jinja2 spacing could be improved: {{ [ alloy_service_group ] + alloy_user_groups }} -> {{ \[alloy_service_group] + alloy_user_groups }}
group: "{{ alloy_service_group }}"
group: "{{ [ alloy_service_group ] + alloy_user_groups }}"
system: true
create_home: false # Appropriate for a system user, usually doesn't need a home directory
become: true
Expand Down

0 comments on commit ecdb42f

Please sign in to comment.