Update main.yml

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:
SvenEeckeman 2016-12-01 21:24:21 +01:00 committed by GitHub
parent eacc77058f
commit 723b9413b0

View File

@ -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 }}"