mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-28 04:22:18 +08:00
34 lines
601 B
YAML
34 lines
601 B
YAML
- name: Install mod_ssl
|
|
yum: name=mod_ssl state=installed
|
|
notify:
|
|
- reload proxyhttpd
|
|
tags:
|
|
- httpd
|
|
- httpd/mod_ssl
|
|
|
|
- name: Copy over SSLCertificateChainFile if defined
|
|
copy: >
|
|
src=ssl.conf
|
|
dest=/etc/httpd/conf.d/ssl.conf
|
|
owner=root
|
|
group=root
|
|
mode=0644
|
|
notify:
|
|
- reload proxyhttpd
|
|
tags:
|
|
- httpd
|
|
- httpd/certificate
|
|
|
|
- name: Install haveged for entropy
|
|
yum: name=haveged state=installed
|
|
tags:
|
|
- httpd
|
|
- httpd/proxy
|
|
|
|
- name: Set haveged running/enabled
|
|
service: name=haveged enabled=yes state=started
|
|
tags:
|
|
- service
|
|
- httpd
|
|
- httpd/proxy
|