ansible-roles/evoacme/tasks/certbot.yml

28 lines
599 B
YAML
Raw Normal View History

---
- name: Do no install certbot crontab
set_fact:
certbot_custom_crontab: False
- include_role:
name: evolix/certbot
2017-03-24 14:06:05 +01:00
- include_role:
2019-11-29 14:00:25 +01:00
name: evolix/remount-usr
2017-03-24 14:06:05 +01:00
- name: Disable /etc/cron.d/certbot
command: mv -f /etc/cron.d/certbot /etc/cron.d/certbot.disabled
args:
removes: /etc/cron.d/certbot
- name: Disable /etc/cron.daily/certbot
command: mv -f /etc/cron.daily/certbot /etc/cron.daily/certbot.disabled
args:
removes: /etc/cron.daily/certbot
- name: Install evoacme custom cron
copy:
src: evoacme.cron
dest: /etc/cron.daily/evoacme
mode: "0755"