mirror of
https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git
synced 2024-11-22 22:00:10 +00:00
13 lines
326 B
Text
13 lines
326 B
Text
|
#!/usr/bin/with-contenv bash
|
||
|
#shellcheck shell=bash
|
||
|
|
||
|
if [[ -n "$PROMETHEUS_ENABLE" ]]; then
|
||
|
while [[ ! -f /run/readsb-prometheus.prom ]]
|
||
|
do
|
||
|
sleep 1
|
||
|
done
|
||
|
echo -e "HTTP/1.1 200 OK\nContent-Type: text/plain\n\n$(cat /run/readsb-prometheus.prom)" | ncat -l 9274 > /dev/null 2>&1
|
||
|
else
|
||
|
sleep infinity
|
||
|
fi
|