homeserver/roles/mgrote.fileserver_smb/handlers/main.yml
2020-08-18 11:57:53 +02:00

14 lines
433 B
YAML

- name: "smbd neustarten"
become: yes
systemd:
name: smbd
enabled: yes
state: restarted
- name: set_samba_passwords
become: yes
shell: "printf '{{ item.password }}\n{{ item.password }}\n' | smbpasswd -a {{ item.name }}" # noqa 306 301 #pipefail: https://blog.christophersmart.com/2019/09/28/using-pipefail-with-shell-module-in-ansible/
with_items:
- "{{ smb_nutzer }}"
no_log: True