diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/ingress/etc_crontab.j2 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/ingress/etc_crontab.j2 b/templates/ingress/etc_crontab.j2 index 7308565..0ec694d 100644 --- a/templates/ingress/etc_crontab.j2 +++ b/templates/ingress/etc_crontab.j2 @@ -6,5 +6,7 @@ PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin # #minute hour mday month wday who command -# Update LetsEncrypt certificates every day at 2:00 AM -0 2 * * * root certbot certonly --nginx -n -m jan@jantuomi.fi --agree-tos -d {{ items }} +# Update LetsEncrypt certificates every day after 2:00 AM +{% for item in items %} +{{ loop.index0 }} 2 * * * root certbot certonly --nginx -n -m jan@jantuomi.fi --agree-tos -d {{ item }} +{% endfor %} |
