Merge pull request #34 from goetzk/control-share-browsing

Control if shares are browseable or not
This commit is contained in:
Bert Van Vreckem 2018-10-04 21:04:39 +02:00 committed by GitHub
commit c9bac40925
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -151,6 +151,7 @@ A complete overview of share options follows below. Only `name` is required, the
| Option | Default | Comment |
| :--- | :--- | :--- |
| `browseable` | - | Controls whether this share appears in file browser. |
| `comment` | - | A comment string for the share |
| `create_mode` | `0664` | See the Samba documentation for details. |
| `directory_mode` | `0775` | See the Samba documentation for details. |

View File

@ -126,6 +126,9 @@
{% if share.guest_ok is defined %}
guest ok = {{ share.guest_ok }}
{% endif %}
{% if share.browseable is defined %}
browseable = {{ share.browseable }}
{% endif %}
{% if share.writable is defined %}
writable = {{ share.writable }}
{% endif %}