diff --git a/README.md b/README.md index cf5a996..fc0cb15 100644 --- a/README.md +++ b/README.md @@ -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. | diff --git a/templates/smb.conf.j2 b/templates/smb.conf.j2 index 5f6cdad..5351fa8 100755 --- a/templates/smb.conf.j2 +++ b/templates/smb.conf.j2 @@ -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 %}