Merge pull request #1 from SvenEeckeman/SvenEeckeman-patch-1
Fixed a problem that occurs when adding users with usernames that are part of already existing usernames (e.g. when alexander exists, you won't be able to add user alex).
This commit is contained in:
commit
ec8963a881
@ -93,7 +93,7 @@
|
||||
|
||||
- name: Create Samba users if they don't exist yet
|
||||
shell: >
|
||||
(pdbedit -L | grep {{ item.name }} 2>&1 > /dev/null) \
|
||||
(pdbedit --user={{ item.name }} 2>&1 > /dev/null) \
|
||||
|| (echo {{ item.password }}; echo {{ item.password }}) \
|
||||
| smbpasswd -s -a {{ item.name }}
|
||||
with_items: "{{ samba_users }}"
|
||||
|
Loading…
Reference in New Issue
Block a user