1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-11-21 21:30:11 +00:00

aircraft.csv.gz path changes due to tar1090-update changes

This commit is contained in:
Matthias Wirth 2024-04-13 23:52:17 +02:00
parent 7748ff4de1
commit 761df76b3a

View file

@ -254,8 +254,11 @@ if [[ -n "$READSB_NET_VRS_PORT" ]]; then
fi
# make sure the db file exists, and if it does, use it
if [[ -e $TAR1090_INSTALL_DIR/aircraft.csv.gz ]]; then
if [[ "$TAR1090_ENABLE_AC_DB" == "true" ]]; then
if [[ "$TAR1090_ENABLE_AC_DB" == "true" ]]; then
if [[ -e $TAR1090_UPDATE_DIR/aircraft.csv.gz ]]; then
READSB_CMD+=("--db-file=$TAR1090_UPDATE_DIR/aircraft.csv.gz")
elif [[ -e $TAR1090_INSTALL_DIR/aircraft.csv.gz ]]; then
# fallback to container supplied not updated csv.gz
READSB_CMD+=("--db-file=$TAR1090_INSTALL_DIR/aircraft.csv.gz")
fi
fi