From fd0b70795809f51828315ac18423e76a5e92871b Mon Sep 17 00:00:00 2001 From: Kyle Lexmond Date: Tue, 24 Dec 2024 05:39:16 +0000 Subject: [PATCH] Fix double space --- tasks/cert_sync_detection.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/cert_sync_detection.yml b/tasks/cert_sync_detection.yml index 14a457fb..002760e2 100644 --- a/tasks/cert_sync_detection.yml +++ b/tasks/cert_sync_detection.yml @@ -10,7 +10,7 @@ # 2. Extract path attribute from dict list # 3. Keep only basename # 4. Remove extension -- name: "[cert sync] Create list of existing client with existing certs" +- name: "[cert sync] Create list of existing client with existing certs" ansible.builtin.set_fact: openvpn_existing_client: "{{ openvpn_existing_cert.files | map(attribute='path') | map('basename') | map('replace', '.csr', '') | sort }}" when: (openvpn_existing_cert.files | length) > 0