Skip to content

Commit

Permalink
fix(named.conf.local.jinja): fix salt-lint errors
Browse files Browse the repository at this point in the history
```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']}}; };
```
  • Loading branch information
myii committed Oct 9, 2019
1 parent 920615a commit 67736a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bind/files/named.conf.local.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 67736a2

Please sign in to comment.