Files
fedora-infra_ansible/roles/httpd/mod_ssl/tasks/main.yml
Ralph Bean ebd906b063 Typofix.
2014-12-08 14:57:19 +00:00

21 lines
353 B
YAML

- name: Install mod_ssl
yum: name=mod_ssl state=installed
notify:
- restart httpd
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:
- restart httpd
tags:
- httpd
- httpd/certificate