From fe47efb37801280b27d03579d63c571a4171c661 Mon Sep 17 00:00:00 2001 From: Ernest CHIARELLO Date: Wed, 3 Oct 2018 17:59:36 +0200 Subject: [PATCH] Update main.yml the default shell for non-system users on Linux OS is /bin/sh, which does not serve much... /bin/bash is much more useful if you want to work with this user. --- tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/main.yml b/tasks/main.yml index 8685c67..c3c9c04 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -56,6 +56,7 @@ user: name: '{{ item }}' groups: docker + shell: /bin/bash append: yes with_items: '{{ docker_engine_allow_non_root }}'