mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
tvheadend: cut subnet from lan IP reported by uci, fix bug #26681
Unannounced modifications (OpenWrt PR 13780) in uci network.lan.ipaddr broke tvheadend init script. This commit updates the init script to cut the subnet from the ip address reported by uci. Bug report: #26681 Reported-by: @DonKult Tested-by: @DonKult Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
This commit is contained in:
committed by
Josef Schlehofer
parent
df98d72e40
commit
ea07162ee5
@@ -63,7 +63,7 @@ load_uci_config() {
|
||||
config_get_bool ipv6 server ipv6 0
|
||||
[ "$ipv6" -eq 1 ] && procd_append_param command --ipv6
|
||||
config_get bindaddr server bindaddr
|
||||
[ -z "$bindaddr" ] && bindaddr=$(uci get network.lan.ipaddr)
|
||||
[ -z "$bindaddr" ] && bindaddr=$(uci get network.lan.ipaddr | cut -d / -f 1)
|
||||
[ -n "$bindaddr" ] && procd_append_param command --bindaddr "$bindaddr"
|
||||
config_get http_port server http_port
|
||||
[ -n "$http_port" ] && procd_append_param command --http_port "$http_port"
|
||||
|
||||
Reference in New Issue
Block a user