mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 01:30:22 +00:00
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']}}; }; ```
This commit is contained in:
parent
920615a067
commit
67736a2fed
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue