From 374c4c20e5d59ddfd9bc332f668a9eaca7033eb9 Mon Sep 17 00:00:00 2001 From: "Masih H. Derkani" Date: Mon, 9 Sep 2024 15:14:44 +0100 Subject: [PATCH] Explicitly create fc group --- ansible/includes/lotus_user.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible/includes/lotus_user.yml b/ansible/includes/lotus_user.yml index f1ba5417..9e578036 100644 --- a/ansible/includes/lotus_user.yml +++ b/ansible/includes/lotus_user.yml @@ -1,3 +1,10 @@ +- name: Ensure lotus group exists + group: + name: "{{ lotus_user }}" + state: present + gid: "{{ lotus_user_uid }}" + system: yes + - name: Ensure lotus user exists user: name: "{{ lotus_user }}"