diff --git a/roles/httpd/certificate/tasks/main.yml b/roles/httpd/certificate/tasks/main.yml index 7ba2a24ffd..5c7fa1cdb7 100644 --- a/roles/httpd/certificate/tasks/main.yml +++ b/roles/httpd/certificate/tasks/main.yml @@ -6,7 +6,7 @@ - name: Copy over SSLCertificateChainFile if defined copy: > - src={{private}}/httpd/{{SSLCertificateChainFile}} + src={{private}}/files/httpd/{{SSLCertificateChainFile}} dest=/etc/pki/tls/certs/{{SSLCertificateChainFile}} owner=root group=root @@ -27,7 +27,7 @@ mode=0644 with_first_found: - "{{cert}}" - - "{{private}}/httpd/{{name}}.cert" + - "{{private}}/files/httpd/{{name}}.cert" notify: - restart httpd tags: @@ -43,7 +43,7 @@ mode=0600 with_first_found: - "{{key}}" - - "{{private}}/httpd/{{name}}.key" + - "{{private}}/files/httpd/{{name}}.key" notify: - restart httpd tags: