From d81f49b96929fd16cd53863b404768e57809001e Mon Sep 17 00:00:00 2001 From: Stephen Smoogen Date: Thu, 4 Feb 2021 16:16:31 -0500 Subject: [PATCH] add the new certs that will need to be installed. They will need to be properly installed and then the other configs need to use them --- roles/copr/backend/tasks/install_certs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/copr/backend/tasks/install_certs.yml b/roles/copr/backend/tasks/install_certs.yml index 1fc687d1c0..4c2ab994dc 100644 --- a/roles/copr/backend/tasks/install_certs.yml +++ b/roles/copr/backend/tasks/install_certs.yml @@ -1,6 +1,10 @@ - name: copy httpd ssl certificates copy: src="{{ private }}/files/httpd/{{ item }}" dest="/etc/lighttpd/{{ item }}" owner=root group=root mode=0600 with_items: + - copr-be.cloud.fedoraproject.org.key + - copr-be.cloud.fedoraproject.org.cert + - copr-be.cloud.fedoraproject.org.pem + - copr-be.cloud.fedoraproject.org.intermediate.cert - copr.fedorainfracloud.org.key - copr.fedorainfracloud.org.crt - copr.fedorainfracloud.org.pem