You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
288 B
8 lines
288 B
5 years ago
|
{% for share in nas_shares %}
|
||
|
{% if share.protocols.nfs.enabled %}
|
||
|
{{ share.path | default(nas_root_dir + '/data/' + share.name) }} *(rw,{{ share.protocols.nfs.root_squash | ternary('','no_') }}root_squash)
|
||
|
{% else %}
|
||
|
# NFS not enabled for share {{ share.name }}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|