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