update..
This commit is contained in:
@ -31,10 +31,12 @@ SystemGroup lpadmin
|
||||
#ConfigFilePerm 0640
|
||||
#LogFilePerm 00640
|
||||
|
||||
{% if ansible_facts['distribution'] == "Debian" %}
|
||||
# Specifies the group name or ID that will be used for log files.
|
||||
# The default group in Debian is "adm".
|
||||
LogFileGroup adm
|
||||
|
||||
{% endif %}
|
||||
# Location of the file logging all access to the scheduler; may be the name
|
||||
# "syslog". If not an absolute path, the value of ServerRoot is used as the
|
||||
# root directory. Also see the "AccessLogLevel" directive in cupsd.conf.
|
||||
|
@ -44,6 +44,22 @@
|
||||
; netbios name = FILE
|
||||
netbios name = {{ samba_netbios_name|default('FILE') }}
|
||||
|
||||
{% if samba_server_min_protocol is defined and samba_server_min_protocol|length > 0 %}
|
||||
|
||||
# This setting controls the minimum protocol version that the server will allow
|
||||
# the client to use. Normally this option should not be set as the automatic
|
||||
# negotiation phase in the SMB protocol takes care of choosing the appropriate
|
||||
# protocol unless you have legacy clients which are SMB1 capable only.
|
||||
#
|
||||
# See Related command: server max protocol for a full list of available protocols.
|
||||
#
|
||||
# Default: server min protocol = SMB2_02
|
||||
#
|
||||
# Example: server min protocol = NT1
|
||||
#
|
||||
server min protocol = {{ samba_server_min_protocol }}
|
||||
|
||||
{% endif %}
|
||||
|
||||
#### Networking ####
|
||||
|
||||
|
Reference in New Issue
Block a user