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.
25 lines
623 B
25 lines
623 B
---
|
|
- 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'
|
|
|
|
- import_tasks: install-from-source.yml
|
|
when: certbot_install_method == 'source'
|
|
|
|
- include_tasks: create-cert-standalone.yml
|
|
with_items: "{{ certbot_certs }}"
|
|
when:
|
|
- certbot_create_if_missing
|
|
- certbot_create_method == 'standalone'
|
|
loop_control:
|
|
loop_var: cert_item
|
|
|
|
- import_tasks: renew-cron.yml
|
|
when: certbot_auto_renew
|
|
|