diff options
Diffstat (limited to 'roles/nfsd/templates')
-rw-r--r-- | roles/nfsd/templates/exports.j2 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/nfsd/templates/exports.j2 b/roles/nfsd/templates/exports.j2 new file mode 100644 index 0000000..78ee61f --- /dev/null +++ b/roles/nfsd/templates/exports.j2 @@ -0,0 +1,8 @@ +# managed by Ansible + +{% for host in groups.servers %} +{% if host in nfsd_shared_dirs %} +{% set h = hostvars[host] %} +{{ nfsd_data_dir }}/{{ h.inventory_hostname }} -maproot=root {{ h.__ip.internal if h.__ip.internal is defined }} {{ h.__ip.external if h.__ip.external is defined }} +{% endif %} +{% endfor %} |