From ca4ebba7e322c6104bb18f1c853370e685cdb451 Mon Sep 17 00:00:00 2001 From: Patrick Jezek Date: Wed, 2 Oct 2024 11:55:26 +0200 Subject: [PATCH] Update install.yml Commit 8dbd124a04d2d68689fa7fa3be91db3b077b7589 broke #212, see comments: - https://github.com/grafana/grafana-ansible-collection/pull/212#issuecomment-2388057978 - https://github.com/grafana/grafana-ansible-collection/pull/209#issuecomment-2388112265 --- roles/alloy/tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/alloy/tasks/install.yml b/roles/alloy/tasks/install.yml index d39c97b1..e98b2147 100644 --- a/roles/alloy/tasks/install.yml +++ b/roles/alloy/tasks/install.yml @@ -13,7 +13,7 @@ - name: Create alloy user ansible.builtin.user: name: "{{ alloy_service_user }}" - 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