2025-08-20 21:04:19 -04:00

22 lines
494 B
YAML

---
- import_tasks: include-vars.yml
- import_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
- import_tasks: install-with-package.yml
when: certbot_install_method == 'package'
- import_tasks: install-with-snap.yml
when: certbot_install_method == 'snap'
- include_tasks: create-cert-dns-cloudflare.yml
with_items: "{{ certbot_certs }}"
when: certbot_create_if_missing
loop_control:
loop_var: cert_item
- import_tasks: renew-cron.yml
when: certbot_auto_renew