From 6728f4e4c27dd98c82f0a7b9fa78c9be7908f7fb Mon Sep 17 00:00:00 2001 From: mannersarbeitsbude Date: Fri, 21 Jan 2022 13:33:48 +0100 Subject: [PATCH] override {{certbot_script}} not work #169 FIX --- .gitignore | 2 +- tasks/renew-cron.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8840c8f..4c698b7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ */__pycache__ *.pyc .cache - +.idea diff --git a/tasks/renew-cron.yml b/tasks/renew-cron.yml index 394a30e..5757a6c 100644 --- a/tasks/renew-cron.yml +++ b/tasks/renew-cron.yml @@ -2,7 +2,7 @@ - name: Add cron job for certbot renewal (if configured). cron: name: Certbot automatic renewal. - job: "{{ certbot_script }} renew {{ certbot_auto_renew_options }}" + job: "{{ certbot_auto_certbot_script }} renew {{ certbot_auto_renew_options }}" minute: "{{ certbot_auto_renew_minute }}" hour: "{{ certbot_auto_renew_hour }}" user: "{{ certbot_auto_renew_user }}"