Browse Source

Support multiple log path

master
edwin 9 years ago
parent
commit
fdfb263e09
2 changed files with 5 additions and 2 deletions
  1. +1
    -1
      logrotate/jobs.sls
  2. +4
    -1
      logrotate/templates/job.tmpl

+ 1
- 1
logrotate/jobs.sls View File

@@ -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 View File

@@ -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 %}

Loading…
Cancel
Save