igmpproxy: report an error and dont start the instance if one of the interfaces is...
authorblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 6 Jun 2014 09:34:38 +0000 (09:34 +0000)
committerblogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 6 Jun 2014 09:34:38 +0000 (09:34 +0000)
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41032 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/network/services/igmpproxy/files/igmpproxy.init

index 58b4377..fb0333f 100644 (file)
@@ -42,7 +42,11 @@ igmp_add_phyint() {
        json_load "$(ifstatus $network)"
        json_get_var device l3_device
        json_get_var up up
-       [ -n "$device" -a "$up" = "1" ] || return;
+
+       [ -n "$device" -a "$up" = "1" ] || {
+               procd_append_param error "$network is not up"
+               return;
+       }
 
        echo -e "\nphyint $device $direction ratelimit 0 threshold 1" >> /var/etc/igmpproxy.conf
 
@@ -68,10 +72,9 @@ service_triggers() {
 start_service() {
        config_load igmpproxy
 
+       procd_open_instance
        config_foreach igmp_header igmpproxy
        config_foreach igmp_add_phyint phyint
-
-       procd_open_instance
        procd_set_param command $PROG
        [ -n "$OPTIONS" ] && procd_append_param $OPTIONS
        procd_append_param command $CONFIGFILE