feat(cron.env): add env option in cron-formula

This commit is contained in:
Gino Naumann 2019-11-01 08:38:15 +01:00
parent f9c61a9859
commit 12cee12227
2 changed files with 29 additions and 0 deletions

View File

@ -23,3 +23,16 @@ cron.{{ task }}:
{%- endif %}
{%- endfor %}
{%- for env, env_options in cron.get('env', {}). items() %}
{%- set env_type = env_options.type|d('present') %}
cron.{{ env }}:
cron.env_{{ env_type }}:
- name: {{ env_options.name }}
{%- if env_type == 'present' %}
- value: {{ env_options.value }}
{%- endif %}
- user: {{ env_options.user|d('root') }}
{%- endfor %}

View File

@ -35,3 +35,19 @@ cron:
minute: '*/5'
hour: '*'
comment: comment4
env:
env1:
type: present # Default
name: PATH
value: /usr/local/bin:/usr/bin:/bin:/usr/games
user: root # Default
env2:
type: absent
name: MAILTO
value: example@example.com # not needed
user: root # Default
env3:
type: absent
name: LANG
value: en_GB.UTF-8
user: root