ctucx.git: ansible-configs

My personal ansible roles and playbooks [deprecated in favor of nixos]

commit 3c7dde7f1d6d1a6d7c79885ce6d3d2869f116f18
parent a14bbb2c527b454853c6b00f3fafc7c5cd655ac9
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 28 Feb 2021 23:48:15 +0100

roles/common: fix
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/roles/common/tasks/users.yml b/roles/common/tasks/users.yml
@@ -12,7 +12,7 @@
     name: "{{ item.name }}"
     group: "{{ item.name }}"
     groups: "{{ item.groups }}"
-    shell: "{{ item.shell | default('/usr/bin/sh') }}"
+    shell: "{{ item.shell | default('/bin/sh') }}"
     password: "{{item.password | password_hash('sha512', 'uD7ieghugeigh4eisoimoa3iushaeshechoonaequah5eiquerohph9paexai7oh') }}"
   loop: "{{ system.users }}"