diff options
| author | Ralph Bean <rbean@redhat.com> | 2014-12-08 15:00:50 +0000 |
|---|---|---|
| committer | Ralph Bean <rbean@redhat.com> | 2014-12-08 15:00:50 +0000 |
| commit | 564cd2ce29c5950432b118dc3a05e01c773a8766 (patch) | |
| tree | 07bff026fe7529152e314cc55fdc996454b9a45d /roles/httpd/certificate | |
| parent | ebd906b063d4583c1aad4dfbd2942f244e44d4d7 (diff) | |
| download | ansible-564cd2ce29c5950432b118dc3a05e01c773a8766.tar.gz ansible-564cd2ce29c5950432b118dc3a05e01c773a8766.tar.xz ansible-564cd2ce29c5950432b118dc3a05e01c773a8766.zip | |
Down a directory.
Diffstat (limited to 'roles/httpd/certificate')
| -rw-r--r-- | roles/httpd/certificate/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/httpd/certificate/tasks/main.yml b/roles/httpd/certificate/tasks/main.yml index 7ba2a24ff..5c7fa1cdb 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: |
