From a2b7a1381c1c3e268104c14dcb2c99047832ad81 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 7 Dec 2021 15:14:44 +0100 Subject: [PATCH] copr-be: fixup the cert file locations --- roles/copr/backend/tasks/install_certs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/copr/backend/tasks/install_certs.yml b/roles/copr/backend/tasks/install_certs.yml index bcf0290a8c..36be543de8 100644 --- a/roles/copr/backend/tasks/install_certs.yml +++ b/roles/copr/backend/tasks/install_certs.yml @@ -23,6 +23,7 @@ # following issues: # https://pagure.io/copr/copr/issue/2001 Resolves: # https://pagure.io/fedora-infrastructure/issue/10391 +# Note that the items here must match the configuration in lighttpd.conf! - name: allow lighttpd to read the certificates acl: path: "{{ item }}" @@ -31,7 +32,7 @@ permissions: r-- state: present with_items: - - /etc/lighttpd/copr.fedorainfracloud.org.pem - - /etc/lighttpd/copr.fedorainfracloud.org.intermediate.crt + - "/etc/lighttpd/copr-be.cloud.fedoraproject.org.pem" + - "/etc/lighttpd/copr-be.cloud.fedoraproject.org.intermediate.cert" tags: - config