igmpproxy: do not start instance if no upstream interface is available
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43659
This commit is contained in:
parent
b37dc7e7ce
commit
f48b7aa6e4
1 changed files with 6 additions and 1 deletions
|
@ -48,6 +48,8 @@ igmp_add_phyint() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[[ "$direction" = "upstream" ]] && has_upstream=1
|
||||||
|
|
||||||
echo -e "\nphyint $device $direction ratelimit 0 threshold 1" >> /var/etc/igmpproxy.conf
|
echo -e "\nphyint $device $direction ratelimit 0 threshold 1" >> /var/etc/igmpproxy.conf
|
||||||
|
|
||||||
if [ -n "$altnets" ]; then
|
if [ -n "$altnets" ]; then
|
||||||
|
@ -104,11 +106,14 @@ service_triggers() {
|
||||||
}
|
}
|
||||||
|
|
||||||
start_service() {
|
start_service() {
|
||||||
|
has_upstream=
|
||||||
config_load igmpproxy
|
config_load igmpproxy
|
||||||
|
|
||||||
procd_open_instance
|
|
||||||
config_foreach igmp_header igmpproxy
|
config_foreach igmp_header igmpproxy
|
||||||
config_foreach igmp_add_phyint phyint
|
config_foreach igmp_add_phyint phyint
|
||||||
|
[ -n "$has_upstream" ] || return
|
||||||
|
|
||||||
|
procd_open_instance
|
||||||
procd_set_param command $PROG
|
procd_set_param command $PROG
|
||||||
[ -n "$OPTIONS" ] && procd_append_param $OPTIONS
|
[ -n "$OPTIONS" ] && procd_append_param $OPTIONS
|
||||||
procd_append_param command $CONFIGFILE
|
procd_append_param command $CONFIGFILE
|
||||||
|
|
Loading…
Reference in a new issue