mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-29 13:01:36 +08:00
16 lines
374 B
YAML
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
|