Explorar el Código

Merge pull request #18 from edwin--zhao/morefile

Support multiple log path
tags/v0.9.0
Niels Abspoel hace 9 años
padre
commit
a09d8f8a6c
Se han modificado 2 ficheros con 5 adiciones y 2 borrados
  1. +1
    -1
      logrotate/jobs.sls
  2. +4
    -1
      logrotate/templates/job.tmpl

+ 1
- 1
logrotate/jobs.sls Ver fichero

@@ -20,7 +20,7 @@ logrotate_{{key}}:
- service: {{ logrotate.service }}
- context:
{% if value is mapping %}
path: {{ value.get('path', key) }}
path: {{ value.get('path', []) }}
data: {{ value.get('config', []) }}
{% else %}
path: {{ key }}

+ 4
- 1
logrotate/templates/job.tmpl Ver fichero

@@ -1,5 +1,8 @@
# vim: sw=2 sts=2 ts=2 sw et
{{ path }} {
{% for onepath in path %}
{{ onepath }}
{%- endfor %}
{
{% for item in data %}
{{ item }}
{%- endfor %}

Cargando…
Cancelar
Guardar