- Package:
- buildbot-worker
- Source:
- buildbot
- Submitter:
- Vadim Zeitlin
- Date:
- 2021-09-02 14:12:02 UTC
- Severity:
- normal
Dear Maintainer,
Setting WORKER_OPTIONS in /etc/default/buildbot-worker to e.g. "--verbose"
doesn't work because its value is used in a wrong place in the init.d
script: it does
"$WORKER_RUNNER $op ${WORKER_OPTIONS[$mi]} ${WORKER_BASEDIR[$mi]}
when the correct syntax would be
"$WORKER_RUNNER ${WORKER_OPTIONS[$mi]} $op ${WORKER_BASEDIR[$mi]}
i.e. the options must come _before_ the operation for buildbot-worker, not
after it.