1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-11-22 13:50:14 +00:00

fix syntax error

This commit is contained in:
Matthias Wirth 2023-05-05 15:26:21 +02:00
parent 75ee015381
commit 586e9e1296

View file

@ -79,10 +79,10 @@ if ! pgrep readsb >/dev/null; then
fi fi
while ! pgrep readsb >/dev/null while ! pgrep readsb >/dev/null
do do
sleep 2 &; wait $! sleep 2 & wait $!
done done
# wait 2 seconds after readsb process exists # wait 2 seconds after readsb process exists
sleep 2 &; wait $! sleep 2 & wait $!
fi fi
@ -201,7 +201,7 @@ do
# stagger by 1 second so they don't all start at the same time # stagger by 1 second so they don't all start at the same time
sleep 1 &; wait $! sleep 1 & wait $!
# ------------------------------------------------ # ------------------------------------------------
# run this Mlat_client instance in the background: # run this Mlat_client instance in the background:
@ -220,7 +220,7 @@ do
pid_array[$!]="${MLAT_PARAM[*]}" pid_array[$!]="${MLAT_PARAM[*]}"
done done
sleep 5 &; wait $! sleep 5 & wait $!
# All MLAT Clients are up, so set the flag. This flag is read by MLATHUB as a sign that it's # All MLAT Clients are up, so set the flag. This flag is read by MLATHUB as a sign that it's
# safe to start up # safe to start up
@ -234,7 +234,7 @@ do
if ! kill -0 "${mlat_pid}" >/dev/null 2>&1 if ! kill -0 "${mlat_pid}" >/dev/null 2>&1
then then
# it exited - let's restart: # it exited - let's restart:
sleep "${RESTARTTIMER}" &; wait $! sleep "${RESTARTTIMER}" & wait $!
servername="$(awk '{print $4}' <<< "${pid_array[$mlat_pid]}")" servername="$(awk '{print $4}' <<< "${pid_array[$mlat_pid]}")"
servername="${servername%%:*}" servername="${servername%%:*}"
@ -255,5 +255,5 @@ do
unset "pid_array[${mlat_pid}]" unset "pid_array[${mlat_pid}]"
fi fi
done done
sleep 10 &; wait $! sleep 10 & wait $!
done done