From c4ee3fa60aa2634218235e38d1a72fc99a958ce1 Mon Sep 17 00:00:00 2001 From: Bert Van Vreckem Date: Sun, 20 May 2018 00:48:15 +0200 Subject: [PATCH] Fix whitespace in configuration file --- templates/smb.conf.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/smb.conf.j2 b/templates/smb.conf.j2 index d5db3dd..27e8fa5 100755 --- a/templates/smb.conf.j2 +++ b/templates/smb.conf.j2 @@ -11,7 +11,7 @@ {% if samba_realm is defined %} realm = {{ samba_realm }} {% endif %} -server string = {{ samba_server_string }} + server string = {{ samba_server_string }} # Logging {% if samba_log is defined %} @@ -36,17 +36,17 @@ server string = {{ samba_server_string }} {% if samba_server_min_protocol is defined %} # Minimum protocol version offered by the server server min protocol = {{ samba_server_min_protocol }} -{% endif %} +{% endif %} {% if samba_server_max_protocol is defined %} # Maximum protocol version offered by the server server max protocol = {{ samba_server_max_protocol }} -{% endif %} +{% endif %} {% if samba_interfaces|length > 0 %} interfaces = {{ samba_interfaces }} -{% endif %} +{% endif %} # Name resolution: make sure \\NETBIOS_NAME\ works wins support = {{ samba_wins_support | ternary('yes', 'no') }} local master = {{ samba_local_master | ternary('yes', 'no') }}