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

9 lines
229 B
Plaintext
Raw Normal View History

2023-01-11 11:55:10 +01:00
{% for export in nfs_exports %}
{{- export.path }}{% for host in export.hosts %}
{{ host.hostname }}({% for option in host.options -%}
{{- option }},
{%- endfor %})
{%- endfor %}
{% endfor %}