From 3d52dfd8ec5674e4252d17b60cba664b7a9831a2 Mon Sep 17 00:00:00 2001 From: Tim O'Guin Date: Fri, 24 Oct 2014 17:04:12 -0500 Subject: [PATCH] added proper indentation for jinja conditionals in reactor template --- salt/files/master.d/reactor.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/salt/files/master.d/reactor.conf b/salt/files/master.d/reactor.conf index e4358a6..08a370a 100644 --- a/salt/files/master.d/reactor.conf +++ b/salt/files/master.d/reactor.conf @@ -4,12 +4,12 @@ {%- set reactors = salt['pillar.get']('salt:reactor') -%} {%- if reactors %} reactor: -{%- for reactor in reactors %} -{%- for event_tag, reactor_files in reactor.items() %} + {%- for reactor in reactors %} + {%- for event_tag, reactor_files in reactor.items() %} - '{{ event_tag }}' -{%- for reactor_file in reactor_files %} + {%- for reactor_file in reactor_files %} - {{ reactor_file }} -{%- endfor %} -{%- endfor %} -{% endfor -%} + {%- endfor %} + {%- endfor %} + {% endfor -%} {%- endif -%}