From daa7ad21c12ddcb40d638eb67348c147aa07b635 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Wed, 9 Jun 2021 13:39:28 -0600 Subject: [PATCH] [blockerbugs] creating local blockerbugs group This extends the last change that ensures a local "blockerbugs" user exists on the sync machine. Unfortunately, that doesn't work unless the group specified already exists. --- roles/blockerbugs/tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/blockerbugs/tasks/main.yml b/roles/blockerbugs/tasks/main.yml index b01c1c67b0..a834b35b8f 100644 --- a/roles/blockerbugs/tasks/main.yml +++ b/roles/blockerbugs/tasks/main.yml @@ -20,6 +20,11 @@ - httpd - blockerbugs +- name: Ensure group `blockerbugs` exists + group: + name: blockerbugs + state: present + - name: create the `blockerbugs` user user: name: blockerbugs