1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 05:50:44 +00:00

fix: use chk_enabled to determine if TAR1090_ENABLE_AC_DB is enabled

This commit is contained in:
Matthias Wirth 2024-07-04 19:32:55 +02:00
parent aa4bd05453
commit 83cc9132cf

View file

@ -276,7 +276,7 @@ if [[ -n "$READSB_NET_VRS_PORT" ]]; then
fi
# make sure the db file exists, and if it does, use it
if [[ "$TAR1090_ENABLE_AC_DB" == "true" ]]; then
if chk_enabled "$TAR1090_ENABLE_AC_DB"; 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