Update for new veto_files option (#10852)

* Update for new veto_files option

* Update samba.markdown
This commit is contained in:
Alpha Tango 2019-11-08 05:45:42 -05:00 committed by Franck Nijhof
parent c7bbaa6d31
commit 6f9176a09c

View File

@ -28,6 +28,13 @@ Sometimes shares will not show up under network in Windows. Then you could open
"10.0.0.0/8",
"172.16.0.0/12",
"192.168.0.0/16"
],
"veto_files": [
"._*",
".DS_Store",
"Thumbs.db",
"icon?",
".Trashes"
]
}
```
@ -55,4 +62,9 @@ allow_hosts:
required: false
default: '`["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]`'
type: list
veto_files:
description: List of files that are neither visible nor accessible. Useful to stop clients from littering the share with temporary hidden files (e.g. macOS .DS_Store, Windows Thumbs.db)
required: false
default: '`["._*", ".DS_Store", "Thumbs.db", "icon?", ".Trashes"]`'
type: list
{% endconfiguration %}