From 9205f56172c00ad81327811f6275f84a6637c925 Mon Sep 17 00:00:00 2001 From: larsmaes Date: Thu, 7 Jun 2018 14:43:13 +0200 Subject: [PATCH] Update docker-users.yml change group to groups otherwise primary group of users wil be changed --- tasks/docker-users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/docker-users.yml b/tasks/docker-users.yml index ccc1ac7..afebd9a 100644 --- a/tasks/docker-users.yml +++ b/tasks/docker-users.yml @@ -2,6 +2,6 @@ - name: Ensure docker users are added to the docker group. user: name: "{{ item }}" - group: docker + groups: docker append: yes with_items: "{{ docker_users }}"