mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
dump1090: update to latest version
Also switches HTTP to uhttpd. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
@@ -13,7 +13,6 @@ config dump1090 main
|
||||
option modeac '0'
|
||||
option net_only '0'
|
||||
option net_bind_address ''
|
||||
option net_http_port '8080'
|
||||
option net_ri_port ''
|
||||
option net_ro_port ''
|
||||
option net_sbs_port ''
|
||||
@@ -38,13 +37,13 @@ config dump1090 main
|
||||
option stats_every ''
|
||||
option onlyaddr '0'
|
||||
option metric '0'
|
||||
option hae '0'
|
||||
option gnss '0'
|
||||
option snip ''
|
||||
option debug ''
|
||||
option ppm ''
|
||||
option html_dir '/usr/share/dump1090'
|
||||
option write_json ''
|
||||
option write_json_every ''
|
||||
option write_json '/var/run/dump1090'
|
||||
option write_json_every '1'
|
||||
option json_location_accuracy ''
|
||||
option oversample '0'
|
||||
option dcfilter '0'
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
uci batch <<-EOF
|
||||
set uhttpd.xupnpd=uhttpd
|
||||
set uhttpd.xupnpd.listen_http='0.0.0.0:8080 [::]:8080'
|
||||
set uhttpd.xupnpd.home=/usr/share/dump1090
|
||||
set uhttpd.xupnpd.rfc1918_filter=1
|
||||
set uhttpd.xupnpd.max_requests=3
|
||||
set uhttpd.xupnpd.max_connections=100
|
||||
set uhttpd.xupnpd.script_timeout=60
|
||||
set uhttpd.xupnpd.network_timeout=30
|
||||
set uhttpd.xupnpd.http_keepalive=20
|
||||
set uhttpd.xupnpd.tcp_keepalive=1
|
||||
set uhttpd.xupnpd.index_page='index.html index.htm gmap.html'
|
||||
commit uhttpd
|
||||
EOF
|
||||
exit 0
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2014-2015 OpenWrt.org
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
|
||||
START=90
|
||||
STOP=10
|
||||
@@ -51,7 +51,6 @@ start_instance() {
|
||||
append_bool "$cfg" modeac "--modeac"
|
||||
append_bool "$cfg" net_only "--net-only"
|
||||
append_arg "$cfg" net_bind_address "--net-bind-address"
|
||||
append_arg "$cfg" net_http_port "--net-http-port"
|
||||
append_arg "$cfg" net_ri_port "--net-ri-port"
|
||||
append_arg "$cfg" net_ro_port "--net-ro-port"
|
||||
append_arg "$cfg" net_sbs_port "--net-sbs-port"
|
||||
@@ -76,13 +75,15 @@ start_instance() {
|
||||
append_arg "$cfg" stats_every "--stats-every"
|
||||
append_bool "$cfg" onlyaddr "--onlyaddr"
|
||||
append_bool "$cfg" metric "--metric"
|
||||
append_bool "$cfg" hae "--hae"
|
||||
append_bool "$cfg" gnss "--gnss"
|
||||
append_arg "$cfg" snip "--snip"
|
||||
append_arg "$cfg" debug "--debug"
|
||||
append_arg "$cfg" ppm "--ppm"
|
||||
append_arg "$cfg" html_dir "--html-dir"
|
||||
append_arg "$cfg" write_json "--write-json"
|
||||
append_arg "$cfg" write_json_every "write-json-every"
|
||||
config_get aux "$cfg" "write_json"
|
||||
[ -n "$aux" ] && mkdir -p $aux
|
||||
append_arg "$cfg" write_json_every "--write-json-every"
|
||||
append_arg "$cfg" json_location_accuracy "--json-location-accuracy"
|
||||
append_bool "$cfg" oversample "--oversample"
|
||||
append_bool "$cfg" dcfilter "--dcfilter"
|
||||
@@ -94,9 +95,9 @@ start_instance() {
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "dump1090"
|
||||
}
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger "dump1090"
|
||||
}
|
||||
|
||||
start_service() {
|
||||
config_load dump1090
|
||||
|
||||
Reference in New Issue
Block a user