homeserver/roles/mgrote.fileserver_smb/handlers/main.yml

16 lines
462 B
YAML
Raw Normal View History

---
- name: restart smbd
2020-08-18 11:57:53 +02:00
become: yes
systemd:
name: smbd
enabled: yes
state: restarted
- name: set samba passwords
2020-08-18 11:57:53 +02:00
become: yes
shell: "printf '{{ item.password }}\n{{ item.password }}\n' | smbpasswd -a {{ item.name }}" # noqa no-changed-when risky-shell-pipe
#pipefail: https://blog.christophersmart.com/2019/09/28/using-pipefail-with-shell-module-in-ansible/
2020-08-18 11:57:53 +02:00
with_items:
- "{{ smb_users }}"
2020-08-18 11:57:53 +02:00
no_log: True