Просмотр исходного кода

fix(interfaces.sls): fix `salt-lint` errors

```bash
Examining ufw/config/interfaces.sls of type state
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/interfaces.sls:20
ufw-interface-{{interface_name}}:

[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/interfaces.sls:22
    - interface: {{interface_name}}

[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/interfaces.sls:24
    - comment: '"{{comment}}"'
```
tags/v0.5.2
Imran Iqbal 5 лет назад
Родитель
Сommit
0c9440e4cd
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 3 добавлений и 3 удалений
  1. +3
    -3
      ufw/config/interfaces.sls

+ 3
- 3
ufw/config/interfaces.sls Просмотреть файл

@@ -17,11 +17,11 @@ include:
{%- for interface_name, interface_details in ufw.get('interfaces', {}).items() %}
{%- set comment = interface_details.get('comment', None) %}

ufw-interface-{{interface_name}}:
ufw-interface-{{ interface_name }}:
ufw.allowed:
- interface: {{interface_name}}
- interface: {{ interface_name }}
{%- if comment is not none %}
- comment: '"{{comment}}"'
- comment: '"{{ comment }}"'
{%- endif %}
- listen_in:
- cmd: reload-ufw

Загрузка…
Отмена
Сохранить