10 lines
312 B
Plaintext
10 lines
312 B
Plaintext
|
{% 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 %}
|
||
|
|