Skip to content

Commit 67736a2

Browse files
committed
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']}}; }; ```
1 parent 920615a commit 67736a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bind/files/named.conf.local.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ zone "{{ key }}" {
4646
inline-signing yes;
4747
{%- endif %}
4848
{%- if args['allow-update'] is defined %}
49-
allow-update { {{args['allow-update']}}; };
49+
allow-update { {{ args['allow-update'] }}; };
5050
{%- endif %}
5151
{%- if args.update_policy is defined %}
5252
update-policy {

0 commit comments

Comments
 (0)