2017-07-28 01:43:45 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=sls
|
|
|
|
|
|
|
|
{% from "cron/map.jinja" import cron_settings with context %}
|
|
|
|
|
|
|
|
{% if 'tasks' in cron_settings %}
|
2019-03-30 23:57:23 +01:00
|
|
|
{% for task,task_options in cron_settings.tasks.items() %}
|
2017-07-28 01:43:45 +02:00
|
|
|
|
|
|
|
cron.{{ task }}:
|
2019-03-31 00:06:08 +01:00
|
|
|
cron.{{ task_options.type|default('present') }}:
|
|
|
|
- name: '{{ task_options.name }}'
|
|
|
|
{% if 'user' in task_options %}
|
|
|
|
- user: {{ task_options.user|default('root') }}
|
|
|
|
{% endif %}
|
|
|
|
{% if 'minute' in task_options %}
|
|
|
|
- minute: '{{ task_options.minute }}'
|
|
|
|
{% endif %}
|
|
|
|
{% if 'hour' in task_options %}
|
|
|
|
- hour: '{{ task_options.hour }}'
|
|
|
|
{% endif %}
|
|
|
|
{% if 'daymonth' in task_options %}
|
|
|
|
- daymonth: '{{ task_options.daymonth }}'
|
|
|
|
{% endif %}
|
|
|
|
{% if 'month' in task_options %}
|
|
|
|
- month: '{{ task_options.month }}'
|
|
|
|
{% endif %}
|
|
|
|
{% if 'dayweek' in task_options %}
|
|
|
|
- dayweek: '{{ task_options.dayweek }}'
|
|
|
|
{% endif %}
|
|
|
|
{% if 'commented' in task_options and task_options.commented %}
|
|
|
|
- commented: True
|
|
|
|
{% endif %}
|
|
|
|
{% if 'special' in task_options %}
|
|
|
|
- special: '{{ task_options.special }}'
|
|
|
|
{% endif %}
|
|
|
|
- identifier: '{{ task }}'
|
|
|
|
{% if 'comment' in task_options %}
|
|
|
|
- comment: '{{ task_options.comment }}'
|
|
|
|
{% endif %}
|
2017-07-28 01:43:45 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|