homeserver/roles/mgrote.fileserver_smb/tasks/shares.yml

22 lines
500 B
YAML
Raw Normal View History

2021-02-20 15:58:23 +01:00
---
- name: ensure smb share directories exist
2021-02-20 15:58:23 +01:00
become: yes
ansible.builtin.file:
path: "{{ item.path }}"
state: directory
mode: 0777
loop: "{{ smb_shares }}"
notify: set samba passwords
2021-02-20 15:58:23 +01:00
- name: template share configuration
2021-02-20 15:58:23 +01:00
become: yes
ansible.builtin.template:
src: smb.conf.j2
dest: /etc/samba/smb.conf
validate: 'testparm -s %s'
with_items:
- "{{ smb_shares }}"
notify:
- restart smbd
- set samba passwords