From 67736a2fed8c94c7a5f8818038bfaff823d3b077 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Wed, 9 Oct 2019 04:12:50 +0100 Subject: [PATCH] fix(named.conf.local.jinja): fix `salt-lint` errors ```bash Examining bind/files/named.conf.local.jinja of type state [206] Jinja variables should have spaces before and after: {{ var_name }} bind/files/named.conf.local.jinja:49 allow-update { {{args['allow-update']}}; }; ``` --- bind/files/named.conf.local.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind/files/named.conf.local.jinja b/bind/files/named.conf.local.jinja index cf5675c..1176c1f 100644 --- a/bind/files/named.conf.local.jinja +++ b/bind/files/named.conf.local.jinja @@ -46,7 +46,7 @@ zone "{{ key }}" { inline-signing yes; {%- endif %} {%- if args['allow-update'] is defined %} - allow-update { {{args['allow-update']}}; }; + allow-update { {{ args['allow-update'] }}; }; {%- endif %} {%- if args.update_policy is defined %} update-policy {