From 44716fd3c4725657c12376e02b9ae24c030acec2 Mon Sep 17 00:00:00 2001 From: Pierre Poulain Date: Wed, 5 Jan 2022 20:57:15 +0100 Subject: [PATCH] Add option to not reset user password Fix #188 --- ansible/users.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/users.yml b/ansible/users.yml index 3072ce3..8d5bb64 100644 --- a/ansible/users.yml +++ b/ansible/users.yml @@ -24,6 +24,7 @@ password: "{{ item.password | password_hash('sha512') }}" shell: /bin/bash home: "{{ home_path if home_path is defined else '/home' }}/{{ item.name }}" + update_password: on_create loop: "{{ users }}" - name: Set user quota