diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-02 18:37:50 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:52:16 +0200 |
commit | a9af50cc3e54389281caa0a353ddf82e10069425 (patch) | |
tree | 3e53bcc3a662aeb94367993ee71ace21c7195e80 /roles/lists/tasks | |
parent | aa6628dd67914c2849781cfb738c7389434c9608 (diff) |
Don't auto-create home directories when adding system users.
Unlike adduser(8), ansible's 'user' module copies skeletal configuration
files even for system users (unless called with createhome=no).
Diffstat (limited to 'roles/lists/tasks')
-rw-r--r-- | roles/lists/tasks/mlmmj.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/lists/tasks/mlmmj.yml b/roles/lists/tasks/mlmmj.yml index 5944e57..51d779f 100644 --- a/roles/lists/tasks/mlmmj.yml +++ b/roles/lists/tasks/mlmmj.yml @@ -6,6 +6,7 @@ # Weird the debian package doesn't do it by itself... - name: Create a user 'mlmmj' user: name=mlmmj system=yes + createhome=no home=/var/spool/mlmmj shell=/bin/false password=! |