mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 14:03:32 +08:00
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
# Expected vars
|
|
# - name...
|
|
# - SSLCertificateChainFile:
|
|
# - cert:
|
|
# - key:
|
|
|
|
- name: Copy over SSLCertificateChainFile if defined
|
|
copy: >
|
|
src={{private}}/files/httpd/{{SSLCertificateChainFile}}
|
|
dest=/etc/pki/tls/certs/{{SSLCertificateChainFile}}
|
|
owner=root
|
|
group=root
|
|
mode=0644
|
|
when: SSLCertificateChainFile is defined
|
|
notify:
|
|
- reload httpd
|
|
tags:
|
|
- httpd
|
|
- httpd/certificate
|
|
|
|
- name: Copy {{name}}.cert
|
|
copy: >
|
|
src={{item}}
|
|
dest=/etc/pki/tls/certs/{{item | basename}}
|
|
owner=root
|
|
group=root
|
|
mode=0644
|
|
with_first_found:
|
|
- "{{private}}/files/httpd/{{cert}}.cert"
|
|
- "{{private}}/files/httpd/{{name}}.cert"
|
|
notify:
|
|
- reload httpd
|
|
tags:
|
|
- httpd
|
|
- httpd/certificate
|
|
|
|
- name: Copy {{name}}.key
|
|
copy: >
|
|
src={{item}}
|
|
dest=/etc/pki/tls/private/{{item | basename}}
|
|
owner=root
|
|
group=root
|
|
mode=0600
|
|
with_first_found:
|
|
- "{{private}}/files/httpd/{{key}}.key"
|
|
- "{{private}}/files/httpd/{{name}}.key"
|
|
notify:
|
|
- reload httpd
|
|
tags:
|
|
- httpd
|
|
- httpd/certificate
|