From d693240eb4f1d7ba7f82c9ed2b56ae47cc4dfafe Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 10 May 2020 19:19:42 +0100 Subject: [PATCH] Just hardcode to bash I'm not resetting my login shell again! --- ansible/roles/common/tasks/user.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/common/tasks/user.yml b/ansible/roles/common/tasks/user.yml index 32a16fe..8bf68cf 100644 --- a/ansible/roles/common/tasks/user.yml +++ b/ansible/roles/common/tasks/user.yml @@ -3,7 +3,7 @@ name: "{{ user }}" home: "{{ home }}" comment: Jake Howard - shell: "{{ lookup('pipe','which bash') }}" + shell: "/bin/bash" system: true become: true