1620ab5be9
We have only one value for install_type now and it gets removed from image names. Change-Id: I8bf95fd7aa9dd26b80d618ca0fcb097003b4cb0a
8 lines
300 B
Django/Jinja
8 lines
300 B
Django/Jinja
{# Cron uses a PATH of /usr/bin:/bin by default, which does not include the #}
|
|
{# virtualenv in source images. #}
|
|
PATH=/var/lib/kolla/venv/bin:/usr/bin:/bin
|
|
|
|
{% for cron_job in cron_jobs %}
|
|
{{ cron_job['min'] }} {{ cron_job['hour'] }} * * {{ cron_job['day'] }} /usr/bin/fernet-rotate.sh
|
|
{% endfor %}
|