| 1 |
BASEDIR="/srv/scratch/qa.debian.org/watch-worker"
|
| 2 |
|
| 3 |
# Please don't change 'user' here, it's beneficial to have that usefully set
|
| 4 |
# -- you can get as many user/pass combinations as you want
|
| 5 |
MOLEUSER=`id -nu`@`hostname -f`
|
| 6 |
MOLEPASS=
|
| 7 |
|
| 8 |
# function used to upload results, only rsync implemented yet, http POST and
|
| 9 |
# possibly mail coming up
|
| 10 |
UPLOADER=upload_rsync
|
| 11 |
|
| 12 |
# May be empty if you're actually working on merkel itself, so that rsync acts
|
| 13 |
# as 'cp'. You can restrict the key used in the authorized_keys file on merkel
|
| 14 |
# by prepending this:
|
| 15 |
# from="your-host-name.example.com",command="rsync --server -zr . /srv/qa.debian.org/mole/queue/incoming/",no-port-forwarding,no-X11-forwarding,no-agent-forwarding
|
| 16 |
RSYNC_TARGET=
|
| 17 |
|
| 18 |
TEST=watch
|
| 19 |
|
| 20 |
MIN_AVAIL=300
|
| 21 |
MAX_AVAIL=500
|
| 22 |
# How many seconds do we allow the test to run before we kill it?
|
| 23 |
TESTTIMEOUT=30
|
| 24 |
|
| 25 |
# After how many minutes do we consider a todo item 'too old' and won't process
|
| 26 |
# it anymore, because we fear it might have been given out again?
|
| 27 |
TODOTIMEOUT=120
|
| 28 |
# After how many days to drop files in working and failed
|
| 29 |
CRUFTTIMEOUT=1
|
| 30 |
FAILEDTIMEOUT=14
|
| 31 |
|
| 32 |
TESTER="/srv/qa.debian.org/mole/worker/watch-worker"
|