Switch blockerbugs from EL7 to FC32

This commit is contained in:
František Zatloukal
2020-08-18 10:55:07 +02:00
parent 01c3107edd
commit ff6841eff6
3 changed files with 17 additions and 18 deletions

View File

@@ -1,23 +1,10 @@
---
- name: install needed packages for blockerbugs
package: state=present name={{ item }} enablerepo=epel-testing
package: state=present name={{ item }}
with_items:
- libsemanage-python
- python-psycopg2
- python-kitchen
- python-alembic
- python-flask-wtf
- python-flask
- python-sqlalchemy
- python-fedora-flask
- python-wtforms
- python-fedora
- pytest
- python-lxml
- python-flask-sqlalchemy
- python-bugzilla
- libselinux-python3
- python3-mod_wsgi
- blockerbugs
- python-bunch
# this is for chronic which helps get rid of excess cron emails
- moreutils
tags:

View File

@@ -26,3 +26,15 @@ SESSION_COOKIE_SECURE = True
# enable fedmenu
FEDMENU_URL = 'https://apps.fedoraproject.org/fedmenu/'
FEDMENU_DATA_URL = 'https://apps.fedoraproject.org/js/data.js'
{% if env == "staging" %}
PAGURE_URL = "https://stg.pagure.io/"
PAGURE_API = "https://stg.pagure.io/api/0/"
{% else %}
PAGURE_URL = "https://pagure.io/"
PAGURE_API = "https://pagure.io/api/0/"
{% endif %}
PAGURE_REPO = "fedora-qa/blocker-review"
PAGURE_REPO_TOKEN = "{{ blockerbugs_pagure_repo_token }}"
PAGURE_REPO_WEBHOOK_KEY = "{{ blockerbugs_pagure_repo_webhook_key }}"
PAGURE_BOT_USERNAME = 'blockerbot'