mirror of
https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git
synced 2024-11-21 13:20:11 +00:00
allow user to customise mlat-client startup stagger delay
This commit is contained in:
parent
9221009a56
commit
6f6587f8a6
2 changed files with 2 additions and 1 deletions
|
@ -203,6 +203,7 @@ The following parameters must be set (mandatory) for the container to function:
|
|||
| `READSB_EXTRA_ARGS` | Optional, allows to specify extra parameters for readsb | | Unset |
|
||||
| `S6_SERVICES_GRACETIME` | Optional, set to 30000 when saving traces / globe_history | | `3000` |
|
||||
| `LOGLEVEL` | `verbose` (all messages), `error` (errors only), `none` (minimal) | | `verbose` |
|
||||
| `MLAT_STARTUP_STAGGER` | mlat-client startup staggering for tidy logs (reduce for quicker startup) | | `15` |
|
||||
|
||||
`READSB_EXTRA_ARGS` just passes arguments to the commandline, you can check this file for more options for wiedehopf's readsb fork: <https://github.com/wiedehopf/readsb/blob/dev/help.h>
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ do
|
|||
|
||||
|
||||
# stagger by 15 second so they don't all start at the same time
|
||||
sleep 15 & wait $!
|
||||
sleep "${MLAT_STARTUP_STAGGER:-15}" & wait $!
|
||||
|
||||
# ------------------------------------------------
|
||||
# run this Mlat_client instance in the background:
|
||||
|
|
Loading…
Reference in a new issue