check-compose: set base URL for compose check reports

This commit is contained in:
Adam Williamson 2015-12-05 13:14:16 -08:00
parent d45c56decb
commit b24574c8c1
4 changed files with 16 additions and 0 deletions

View file

@ -1,4 +1,11 @@
# Optional vars
# - checkcompose_server
## string - hostname of openQA server to connect to (if not set, openQA
## client configuration will determine this, default will be
## localhost)
# - checkcompose_url
## string - base URL for openQA result links (if not set, will be
## the URL the client actually wound up connecting to)
# - checkcompose_wait
## string - (digits) time in minutes to wait for openQA tests to complete
## before sending the report (defaults to 480)

View file

@ -1,4 +1,10 @@
[main]
{% if checkcompose_server is defined %}
server: {{ checkcompose_server }}
{% endif %}
{% if checkcompose_url is defined %}
url: {{ checkcompose_url }}
{% endif %}
{% if checkcompose_wait is defined %}
wait: {{ checkcompose_wait }}
{% endif %}