[OpenWrt-Devel] [PATCH/resend] [odhcp6c] script: only call firewall, if installed

Bastian Bittorf bittorf at bluebottle.com
Sun May 31 04:09:53 EDT 2015


* Bastian Bittorf <bittorf at bluebottle.com> [23.10.2014 11:28]:
> odhcp6c: script: only call firewall, if installed
> 
> we dont use fw3, so i was wondering about error-messages in syslog
> about fw3. check if 'fw3' is in place, before calling it.
> 
> Signed-off-by: Bastian Bittorf <bittorf at bluebottle.com>
> ---
>  package/network/ipv6/odhcp6c/files/dhcpv6.script |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script
> index 1acad19..6c47132 100755
> --- a/package/network/ipv6/odhcp6c/files/dhcpv6.script
> +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script
> @@ -111,7 +111,9 @@ setup_interface () {
>  		MAPRULE="$LW4O6"
>  	fi
>  
> -	[ -n "$ZONE" ] || ZONE=$(fw3 -q network $INTERFACE)
> +	[ -z "$ZONE" ] && {
> +		[ -e '/sbin/fw3' ] && ZONE=$(fw3 -q network $INTERFACE)
> +	}
>  
>  	if [ "$IFACE_MAP" != 0 -a -n "$MAPTYPE" -a -n "$MAPRULE" ]; then
>  		[ -z "$IFACE_MAP" -o "$IFACE_MAP" = 1 ] && IFACE_MAP=${INTERFACE}_map
> -- 
> 1.7.10.4
> 
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel



More information about the openwrt-devel mailing list