faf: configure landing page

This commit is contained in:
Miroslav Suchý 2017-04-12 14:10:27 +02:00
parent 7ca68c5311
commit f8e33b7025

View file

@ -8,4 +8,47 @@
# Allow https and start httpd
- include: services.yml
# landing page
- yum: name=abrt-server-info-page state=latest
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'ADMINS ='
line: ' ADMINS = "infrastructure@lists.fedoraproject.org"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_FAF ='
line: ' MORE_FAF = "https://github.com/abrt/faf/"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_RS ='
line: ' MORE_RS = "https://github.com/abrt/retrace-server"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_ABRT ='
line: ' MORE_ABRT = "https://github.com/abrt/abrt/"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_GABRT ='
line: ' MORE_GABRT = "https://github.com/abrt/gnome-abrt/"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_LR ='
line: ' MORE_LR = "https://github.com/abrt/libreport/"'
notify: restart httpd
- lineinfile:
path: /usr/lib/python2.7/site-packages/abrt-server-info-page/config.py
regexp: 'MORE_SATYR ='
line: ' MORE_SATYR = "https://github.com/abrt/satyr/"'
notify: restart httpd