8 lines
276 B
Text
8 lines
276 B
Text
{%- if nfs is defined -%}
|
|
{% for mount in nfs -%}
|
|
{%- set host=nfs[mount]['host'] -%}
|
|
{%- set dir=nfs[mount]['directory'] %}
|
|
{%- set name=nfs[mount]['name'] %}
|
|
{{name}} -rw,soft,intr,rsize=8192,wsize=8192 {{host}}:{{dir}}
|
|
{%- endfor -%}
|
|
{% endif %}
|