From a5632f404f59ff4f5f4e6933b910830d07193184 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 16 Apr 2020 14:39:36 +0200 Subject: [PATCH] letsencrypt: set the installation directory to the value of 'letsencrypt_acme_sh_certificates_install_dir'. --- library/roles/letsencrypt-acme-sh-client/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/roles/letsencrypt-acme-sh-client/defaults/main.yml b/library/roles/letsencrypt-acme-sh-client/defaults/main.yml index 94dc828..6b631e3 100644 --- a/library/roles/letsencrypt-acme-sh-client/defaults/main.yml +++ b/library/roles/letsencrypt-acme-sh-client/defaults/main.yml @@ -68,7 +68,7 @@ letsencrypt_acme_sh_domains: - { domain: '{{ ansible_fqdn }}', standalone: True } letsencrypt_acme_sh_domains_install: - - { domain: '{{ ansible_fqdn }}', ecc: '{{ letsencrypt_acme_sh_use_ecc }}', cert_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/cert', key_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/privkey', fullchain_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/fullchain' } + - { domain: '{{ letsencrypt_acme_sh_certificates_install_dir }}', ecc: '{{ letsencrypt_acme_sh_use_ecc }}', cert_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/cert', key_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/privkey', fullchain_file: '{{ letsencrypt_acme_sh_certificates_install_path }}/fullchain' } ### Stuff related to the obsolete acmetool package. Needed to cleanup systems where it was installed in the past letsencrypt_acme_ppa_repo: 'ppa:hlandau/rhea'