Files
fedora-infra_ansible/roles/taskotron/ssl-taskotron/tasks/main.yml
Ryan Lerch 304bb44d7a taskotron: remove with_items
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2019-06-20 13:50:31 +00:00

44 lines
1.4 KiB
YAML

---
- name: ensure ssl related packages are installed (yum)
package:
state: present
name:
- mod_ssl
when: ansible_distribution_major_version|int < 22
- name: ensure ssl related packages are installed (dnf)
dnf: name={{ item }} state=present
with_items:
- mod_ssl
when: ansible_distribution_major_version|int > 21 and ansible_cmdline.ostree is not defined
#- name: copy ssl key
# copy: src={{ private }}/files/taskotron/certs/{{ inventory_hostname }}/{{ inventory_hostname }}.key dest=/etc/pki/tls/private/{{ inventory_hostname }}.key
#
#- name: copy ssl cert
# copy: src={{ private }}/files/taskotron/certs/{{ inventory_hostname }}/{{ inventory_hostname }}.crt dest=/etc/pki/tls/certs/{{ inventory_hostname }}.crt
- name: redirect letsencrypt to fedora proxies so certgetter can get this cert.
copy: src=certgetter.conf dest=/etc/httpd/conf.d/certgetter.conf owner=root group=root mode=0644
tags:
- httpd
notify:
- reload httpd
- name: generate rhel httpd ssl config
template: src=ssl.conf.rhel.j2 dest=/etc/httpd/conf.d/ssl.conf owner=root group=root mode=0644
when: is_rhel is defined
tags:
- httpd
notify:
- reload httpd
- name: generate fedora httpd ssl config
template: src=ssl.conf.j2 dest=/etc/httpd/conf.d/ssl.conf owner=root group=root mode=0644
when: is_fedora is defined
tags:
- httpd
notify:
- reload httpd