From ca2a4cdef81a4bfa307ae960345ff6d3040ad589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Fri, 12 Sep 2025 12:03:04 +0300 Subject: [PATCH] Update --- tasks/deployer.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tasks/deployer.yml b/tasks/deployer.yml index ba26c89..cb3981d 100644 --- a/tasks/deployer.yml +++ b/tasks/deployer.yml @@ -643,6 +643,21 @@ - openssl - www +- name: "Deployer - OpenSSL - Configure - Copy Certificate / Root" + community.crypto.x509_certificate: + src: "/root/data/openssl/root/cert.pem" + dest: "/usr/local/share/ca-certificates/root.crt" + tags: + - openssl + - www + +- name: "Deployer - OpenSSL - Configure - CA Certificates Update" + ansible.builtin.command: + cmd: update-ca-certificates + tags: + - openssl + - www + - name: "Deployer - OpenSSL - Configure - Generate Certificate / Intermediate" community.crypto.x509_certificate: path: "/root/data/openssl/{{ cert }}/cert.pem"