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 (#108)

This commit is contained in:
Fred Clausen 2024-07-11 13:44:20 -06:00 committed by GitHub
commit d6316a41cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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