Browse Source

Pillar that cointains string variables throw jinja error (#15)

* change file mode to 644

* change file mode to 644

* Fix problem with stringvariable in pillar
pull/16/merge
Piotr Pieprzycki 7 years ago
parent
commit
7df3a168f8
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      iptables/rules.sls

+ 2
- 0
iptables/rules.sls View File

{%- endif %} {%- endif %}


{%- for service_name, service in pillar.items() %} {%- for service_name, service in pillar.items() %}
{%- if service is mapping %}
{%- if service.get('_support', {}).get('iptables', {}).get('enabled', False) %} {%- if service.get('_support', {}).get('iptables', {}).get('enabled', False) %}


{%- set grains_fragment_file = service_name+'/meta/iptables.yml' %} {%- set grains_fragment_file = service_name+'/meta/iptables.yml' %}
{% include "iptables/_rule.sls" %} {% include "iptables/_rule.sls" %}
{%- endfor %} {%- endfor %}


{%- endif %}
{%- endif %} {%- endif %}
{%- endfor %} {%- endfor %}



Loading…
Cancel
Save