Sfoglia il codice sorgente

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 anni fa
parent
commit
0c9440e4cd
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      ufw/config/interfaces.sls

+ 3
- 3
ufw/config/interfaces.sls Vedi File

@@ -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

Loading…
Annulla
Salva