mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-11 10:32:27 +08:00
21 lines
612 B
Django/Jinja
21 lines
612 B
Django/Jinja
[dist-git]
|
|
|
|
# default is http://coprs/rest/api
|
|
frontend_base_url={{frontend_base_url}}
|
|
|
|
# must have same value as BACKEND_PASSWORD from have frontend in /etc/copr/copr.conf
|
|
# default is PASSWORDHERE but you really should change it. really.
|
|
{% if env == 'production' %}
|
|
frontend_auth={{ copr_backend_password }}
|
|
{% elif devel %}
|
|
frontend_auth={{ copr_backend_password_dev }}
|
|
{% else %}
|
|
frontend_auth={{ copr_backend_password_stg }}
|
|
{% endif %}
|
|
|
|
# where import logs should be stored
|
|
per_task_log_dir=/var/lib/copr-dist-git/per-task-logs/
|
|
|
|
# which chroot to use for mock-scm builds
|
|
mock_scm_chroot=fedora-24-x86_64
|