You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
434 B
YAML
13 lines
434 B
YAML
---
|
|
|
|
export_name: "{{ real_path | basename }}"
|
|
# real_path: "/exported/path"
|
|
export_path: "{{ global_nfs_directory }}/{{ export_name }}"
|
|
export_config_name: "{{ export_name | regex_replace('/', '-') }}"
|
|
mount_unit_name: "{{ export_path | regex_replace('^/') | regex_replace('/', '-') }}.mount"
|
|
|
|
export_hosts:
|
|
- "*"
|
|
squash_user: "nfs_exports" # If not empty, creates user and changes requests to it
|
|
readonly: on # export is readonly
|