From 48941fe2a0b5ef4ce4620f8cfafb383651091b72 Mon Sep 17 00:00:00 2001 From: fliespl Date: Fri, 20 Sep 2024 22:46:05 +0200 Subject: [PATCH] handle certbot expand in webroot --- tasks/create-cert-webroot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tasks/create-cert-webroot.yml b/tasks/create-cert-webroot.yml index 8399872..00e5e12 100644 --- a/tasks/create-cert-webroot.yml +++ b/tasks/create-cert-webroot.yml @@ -12,3 +12,18 @@ - name: Generate new certificate if one doesn't exist. command: "{{ certbot_create_command }}" when: not letsencrypt_cert.stat.exists + +- name: Register certificate domains (if certbot_expand) + shell: "{{ certbot_script }} certificates --cert-name {{ cert_item.domains | first | replace('*.', '') }} | grep Domains | cut -d':' -f2" + changed_when: false + register: letsencrypt_cert_domains_dirty + when: certbot_expand and letsencrypt_cert.stat.exists + +- name: Cleanup domain list (if certbot_expand) + set_fact: + letsencrypt_cert_domains: "{{ letsencrypt_cert_domains_dirty.stdout | trim | split(' ') | map('trim') | select('!=', '') | list | sort }}" + when: certbot_expand and letsencrypt_cert.stat.exists + +- name: Expand certbot certificate (if certbot_expand) + command: "{{ certbot_create_command }}" + when: certbot_expand and letsencrypt_cert.stat.exists and letsencrypt_cert_domains != cert_item.domains | map('trim') | select('!=', '') | list | sort