paulbsd-salt/states/cron/init.sls
2022-05-14 11:22:42 +02:00

8 lines
206 B
Plaintext

---
{%- from "cron/map.jinja" import cron with context %}
{%- for key, value in cron.env.items() %}
cron-env-{{ key|lower }}:
cron.env_present:
- name: {{ key }}
- value: {{ value }}
{%- endfor %}