ansible/roles/nfs-server/templates/exports.j2

9 lines
229 B
Django/Jinja

{% for export in nfs_exports %}
{{- export.path }}{% for host in export.hosts %}
{{ host.hostname }}({% for option in host.options -%}
{{- option }},
{%- endfor %})
{%- endfor %}
{% endfor %}