making pagure admin groups a var and adding sysadmin-qa

This commit is contained in:
Tim Flink 2017-05-18 16:42:31 +00:00
parent a0c18f9c25
commit 0c408b391e
2 changed files with 2 additions and 1 deletions

View file

@ -77,6 +77,7 @@ pagure_ssh_host_fingerprint: '2048 6b:d8:48:27:5a:11:d1:14:e0:c1:91:23:45:c7:fb:
# awk '{print $2}' /etc/ssh/ssh_host_rsa_key.pub | base64 -d | sha256sum -b | awk '{print $1}' | xxd -r -p | base64_
pagure_ssh_host_sha256: 'SHA256:ggRdzg+ugyR6WIzeiuyASAdEHf+HG5yZqJJIu/YTtHI='
new_pagure_admin_groups: ['sysadmin-main', 'sysadmin-qa']
stunnel_service: "eventsource"
stunnel_source_port: 8088

View file

@ -27,7 +27,7 @@ PREFERRED_URL_SCHEME='https'
DB_URL = 'postgresql://{{ new_pagure_db_user }}:{{ new_pagure_db_pass }}@{{ new_pagure_db_host }}/{{ new_pagure_db_name }}'
### The FAS group in which the admin of pagure are
ADMIN_GROUP = ['sysadmin-main']
ADMIN_GROUP = {{ new_pagure_admin_groups }}
### The email address to which the flask.log will send the errors (tracebacks)
EMAIL_ERROR = '{{ pagure_admin_email }}'