Skip to content

Commit

Permalink
refactor(config): remove duplication in using a loop
Browse files Browse the repository at this point in the history
  • Loading branch information
myii committed Oct 15, 2019
1 parent 72281c7 commit 652ebff
Showing 1 changed file with 6 additions and 23 deletions.
29 changes: 6 additions & 23 deletions cron/config/file.sls
Original file line number Diff line number Diff line change
Expand Up @@ -11,34 +11,17 @@
cron.{{ task }}:
cron.{{ task_options.type|default('present') }}:
- name: {{ task_options.name }}
- identifier: '{{ task }}'
{%- 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 %}
{%- for section in ['minute', 'hour', 'daymonth', 'month', 'dayweek', 'comment', 'special'] %}
{%- if section in task_options %}
- {{ section }}: '{{ task_options.get(section) }}'
{%- endif %}
{%- endfor %}
{%- 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 %}
{%- endfor %}
{%- endif %}

0 comments on commit 652ebff

Please sign in to comment.