diff --git a/multimedia/tvheadend/files/tvheadend.config b/multimedia/tvheadend/files/tvheadend.config index 4862d0159..91b7526aa 100644 --- a/multimedia/tvheadend/files/tvheadend.config +++ b/multimedia/tvheadend/files/tvheadend.config @@ -13,3 +13,4 @@ config tvheadend server # option htsp_port '9982' # option htsp_port2 '9983' # option xspf '0' +# option noacl '0' diff --git a/multimedia/tvheadend/files/tvheadend.init b/multimedia/tvheadend/files/tvheadend.init index 9bf08aa45..b47d25c7d 100644 --- a/multimedia/tvheadend/files/tvheadend.init +++ b/multimedia/tvheadend/files/tvheadend.init @@ -74,6 +74,8 @@ load_uci_config() { [ -n "$htsp_port2" ] && procd_append_param command --htsp_port "$htsp_port2" config_get xspf server xspf 0 [ "$xspf" -eq 1 ] && procd_append_param command --xspf + config_get noacl server noacl 0 + [ "$noacl" -eq 1 ] && procd_append_param command --noacl } start_service() {