1
0
Fork 0

Merge pull request #2 from fessoga5/master

add support jobs
This commit is contained in:
Nitin Madhok 2015-01-22 10:49:51 +05:30
commit c267fb69b0
3 changed files with 53 additions and 4 deletions

34
logrotate/jobs.sls Normal file
View File

@ -0,0 +1,34 @@
# vim: sts=2 ts=2 sw=2 et ai
{% from "logrotate/map.jinja" import logrotate with context %}
{% set jobs = salt['pillar.get']('logrotate:jobs') %}
include:
- logrotate
logrotate_directory:
file.directory:
- name: {{ logrotate.include_dir }}
- user: {{ salt['pillar.get']('logrotate:config:user', logrotate.user) }}
- group: {{ salt['pillar.get']('logrotate:config:group', logrotate.group) }}
- mode: 755
- makedirs: True
- require:
- pkg: logrotate
{% for key,value in jobs.iteritems() %}
{{key}}:
file.managed:
- name: {{ logrotate.include_dir }}/{{ key.split("/")[-1] }}
- source: salt://logrotate/templates/job.tmpl
- template: jinja
- user: {{ salt['pillar.get']('logrotate:config:user', logrotate.user) }}
- group: {{ salt['pillar.get']('logrotate:config:group', logrotate.group) }}
- mode: {{ salt['pillar.get']('logrotate:config:mode', '644') }}
- require:
- pkg: logrotate
- watch_in:
- service: {{ logrotate.service }}
- context:
path: {{ key }}
data: {{ value }}
{%- endfor -%}

View File

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

View File

@ -1,5 +1,14 @@
# vim: sts=2 ts=2 sw=2 et ai
logrotate:
lookup:
pkg: 'logrotate'
service: 'crond'
pkg: 'logrotate'
service: 'crond'
jobs:
"/tmp/var/log/mysql/error":
- "weekly"
- "missingok"
- "rotate 52"
- "compress"
- "delaycompress"
- "notifempty"
- "create 640 root adm"
- "sharedscripts"