Ansible Role - Certbot (for Let's Encrypt)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-role-certbot/tasks/main.yml

9 lines
331 B

---
- include: install-from-package.yml
when: not certbot_from_git and (ansible_distribution == 'Fedora' or ansible_distribution == 'RedHat')
- include: install-from-git.yml
when: certbot_from_git or (ansible_distribution != 'Fedora' and ansible_distribution != 'RedHat')
- include: renew-cron.yml
when: certbot_auto_renew