Merge pull request #24 from jonathanunderwood/server_max_protocol

Add samba_server_max_protocol parameter
This commit is contained in:
Bert Van Vreckem 2018-05-19 23:42:59 +02:00 committed by GitHub
commit ead12ecfe9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 25 deletions

View File

@ -42,11 +42,12 @@ No specific requirements
| `samba_log` | - | Set the log file. If left undefined, logging is done through syslog. |
| `samba_log_size` | 5000 | Set the maximum size of the log file. |
| `samba_map_to_guest` | `bad user` | Behaviour when unregistered users access the shares. |
| `samba_mitigate_cve_2017_7494` | true | CVE-2017-7494 mitigation breaks some clients, such as macOS High Sierra. |
| `samba_netbios_name` | `{{ ansible_hostname }}` | The NetBIOS name of this server. |
| `samba_passdb_backend` | `tdbsam` | Password database backend. |
| `samba_realm` | - | Realm domain name |
| `samba_security` | `user` | Samba security setting |
| `samba_server_min_protocol` | - | Specify a minimum protocol version offered by the server. |
| `samba_server_max_protocol` | - | Specify a maximum protocol version offered by the server. |
| `samba_server_string` | `fileserver %m` | Comment string for the server. |
| `samba_shares` | [] | List of dicts containing share definitions. See below for details. |
| `samba_shares_root` | `/srv/shares` | Directories for the shares are created under this directory. |
@ -220,4 +221,5 @@ Pull requests are also very welcome. The best way to submit a PR is by first cre
[Paul Montero](https://github.com/lpaulmp),
[Slavek Jurkowski](https://github.com/slavekjurkowski2),
[Sven Eeckeman](https://github.com/SvenEeckeman),
[Tomohiko Ozawa](https://github.com/kota65535).
[Tomohiko Ozawa](https://github.com/kota65535),
[Jonathan Underwood](https://github.com/jonathanunderwood).

View File

@ -33,6 +33,16 @@ server string = {{ samba_server_string }}
username map = {{ samba_username_map_file }}
{% endif %}
{% if samba_server_min_protocol is defined %}
# Minimum protocol version offered by the server
server min protocol = {{ samba_server_min_protocol }}
{% endif %}
{% if samba_server_max_protocol is defined %}
# Maximum protocol version offered by the server
server max protocol = {{ samba_server_max_protocol }}
{% endif %}
{% if samba_interfaces|length > 0 %}
interfaces = {{ samba_interfaces }}
{% endif %}