Files
fedora-infra_ansible/roles/releng-dash/tasks/main.yml
Patrick Uiterwijk 08568865fe Replace all restart httpd with reload httpd
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2015-11-04 23:40:01 +00:00

16 lines
374 B
YAML

- name: Install the fedora-releng-dash package
yum: name=fedora-releng-dash state=present
tags:
- releng-dash
- name: Copy in http config for the releng dashboard
template: >
src={{item}} dest=/etc/httpd/conf.d/{{website}}/{{item}}
owner=root group=root mode=0644
with_items:
- fedora-releng-dash.conf
notify:
- reload httpd
tags:
- releng-dash