diff --git a/CHANGELOG.md b/CHANGELOG.md index fbe93c88..8056141e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ The **patch** part changes incrementally at each release. ### Added * elasticsearch: tmpdir configuration compatible with 5.x also * elasticsearch: add http.publish_host variable +* evoacme: disable old certbot cron also in cron.daily * kibana: log messages go to /var/log/kibana/kibana.log * mysql: add an option to install the client development libraries (default: `False`) * java: support for Oracle JRE diff --git a/evoacme/tasks/certbot.yml b/evoacme/tasks/certbot.yml index 5288f5fd..003c92d0 100644 --- a/evoacme/tasks/certbot.yml +++ b/evoacme/tasks/certbot.yml @@ -34,6 +34,12 @@ removes: /etc/cron.d/certbot creates: /etc/cron.d/certbot.disabled +- name: Disable /etc/cron.daily/certbot + command: mv /etc/cron.daily/certbot /etc/cron.daily/certbot.disabled + args: + removes: /etc/cron.daily/certbot + creates: /etc/cron.daily/certbot.disabled + - name: Install evoacme custom cron copy: src: evoacme.cron