mirror of
https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git
synced 2024-11-21 13:20:11 +00:00
fix: use chk_enabled to determine if TAR1090_ENABLE_AC_DB is enabled
This commit is contained in:
parent
aa4bd05453
commit
83cc9132cf
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue