Explorar el Código

Fix indentation

tags/v0.2.0
Nicolas Rodriguez hace 7 años
padre
commit
fa34d4aa42
Se han modificado 1 ficheros con 7 adiciones y 6 borrados
  1. +7
    -6
      syslog_ng/files/syslog-ng.conf

+ 7
- 6
syslog_ng/files/syslog-ng.conf Ver fichero

@@ -13,7 +13,7 @@

options {
{%- for rule in syslog_ng.get('options', []) %}
{{ rule_builder(rule) }};
{{ rule_builder(rule) }};
{%- endfor %}
};

@@ -21,9 +21,9 @@ options {
{%- for params in syslog_ng.get(obj, []) %}
{% for name, rules in params.items() %}
{{ obj }} {{ name }} {
{%- for rule in rules %}
{{ rule_builder(rule) }};
{%- endfor %}
{%- for rule in rules %}
{{ rule_builder(rule) }};
{%- endfor %}
};
{%- endfor %}
{%- endfor %}
@@ -32,7 +32,8 @@ options {
{% for loggers in syslog_ng.get('log', []) -%}
log {
{%- for rule in loggers %}
{{ rule_builder(rule) }};
{{ rule_builder(rule) }};
{%- endfor %}
};
{%- endfor %}

{% endfor %}

Cargando…
Cancelar
Guardar