Remove the use of letsencrypt_acme_sh_install.

This commit is contained in:
Andrea Dell'Amico 2023-10-16 18:36:53 +02:00
parent a40edb9fe3
commit 0f781ea08f
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 2 deletions

View File

@ -15,11 +15,11 @@
ansible.builtin.import_tasks: pki_dir.yml
- name: Self signed certificates waiting for the letsencrypt ones
ansible.builtin.import_tasks: self_signed_certificate.yml
when: letsencrypt_acme_sh_install is defined and letsencrypt_acme_sh_install
when: letsencrypt_acme_install is defined and letsencrypt_acme_install
- name: Certificate from privte CA (mkcert)
ansible.builtin.import_tasks: certificate_from_private_ca.yml
when:
- (letsencrypt_acme_sh_install is not defined) or (not letsencrypt_acme_sh_install)
- (letsencrypt_acme_install is not defined) or (not letsencrypt_acme_install)
- mkcert_create_certificate
- name: HTTP client proxy
ansible.builtin.import_tasks: http_client_proxy.yml