From 9f253f64071201fc09a59f4626a3d6e2595042f5 Mon Sep 17 00:00:00 2001 From: Matthieu Saulnier Date: Mon, 22 Jan 2018 06:10:59 +0100 Subject: Add CA and CRL specific path for daemons --- roles/common/tasks/ca.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'roles/common/tasks/ca.yml') diff --git a/roles/common/tasks/ca.yml b/roles/common/tasks/ca.yml index 2bf0e0d..6c9b02c 100644 --- a/roles/common/tasks/ca.yml +++ b/roles/common/tasks/ca.yml @@ -6,3 +6,15 @@ - name: Mise à jour de la base de confiance CA command: /usr/bin/update-ca-trust + +- name: Installation CA personnel pour applis serveur + copy: + src: root.pem + dest: /etc/pki/tls/certs/mon-ca.crt + mode: 0444 + +- name: Installation et renouvellement de la CRL + copy: + src: crt-crl.pem + dest: /etc/pki/tls/certs/crt-crl.pem + mode: 0444 -- cgit