From 146dc6702a724d4adb42488432e91880e2537356 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Thu, 17 Oct 2019 07:55:56 +0100 Subject: [PATCH] fix(vhosts/minimal.tmpl): fix `salt-lint` errors ```bash Examining apache/vhosts/minimal.tmpl of type state [206] Jinja variables should have spaces before and after: {{ var_name }} apache/vhosts/minimal.tmpl:25 ``` --- apache/vhosts/minimal.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache/vhosts/minimal.tmpl b/apache/vhosts/minimal.tmpl index 11ca0c4..00b9a17 100644 --- a/apache/vhosts/minimal.tmpl +++ b/apache/vhosts/minimal.tmpl @@ -22,7 +22,7 @@ 'DocumentRoot': site.get('DocumentRoot', '{0}/{1}'.format(map.wwwdir, sitename)) } -%} - + ServerName {{ vals.ServerName }} {% if site.get('ServerAlias') != False %}ServerAlias {{ vals.ServerAlias }}{% endif %} {% if site.get('ServerAdmin') != False %}ServerAdmin {{ vals.ServerAdmin }}{% endif %}