Feat: add samba shares
This commit is contained in:
9
roles/samba_server/templates/smb_share.conf.j2
Normal file
9
roles/samba_server/templates/smb_share.conf.j2
Normal file
@@ -0,0 +1,9 @@
|
||||
{% for export in samba_exports %}
|
||||
[{{ export.name }}]
|
||||
comment = {{ export.comment }}
|
||||
browseable = {{ export.browseable | default("yes")}}
|
||||
public = {{ export.public | default("yes") }}
|
||||
path = {{ export.path}}
|
||||
writable = {{ export.writable | default("yes") }}
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user