From 0f781ea08f4c18327461937c0e8cf61ccc7ff8a0 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 16 Oct 2023 18:36:53 +0200 Subject: [PATCH] Remove the use of letsencrypt_acme_sh_install. --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index fca28f6..da8ca6c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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