From d07b38c913014baeb0b93a64aabb65cc0f8cc682 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Sun, 2 Jul 2023 20:32:30 +0200 Subject: [PATCH] copy to /tmp the temp cert to avoid not triggering ca-cert update --- tasks/import.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/import.yml b/tasks/import.yml index 2ec106c..e5a0484 100644 --- a/tasks/import.yml +++ b/tasks/import.yml @@ -5,7 +5,7 @@ url: "{{ item.url }}" validate_certs: false force: "{{ import_vault_root_ca_certificate_force_download }}" - dest: "{{ import_vault_root_ca_cert_dir }}/{{ item.cert_name }}.crt" + dest: "/tmp/{{ item.cert_name }}.tmp" mode: '0644' loop: "{{ import_vault_root_ca_certificate_list }}"