de5d1f20e7
Hi Even if "qos-scripts" package isn't installed, multiwan is flushing all the mangle chains. This patch correct this behavior to let people use mangle table if qos-scripts is not there (to use there own qos script ...) Info: For the moment the qos management of the multiwan package is broken (it's speaks about IMQ, instead of IFB) The package version go from 1.0.20 to 1.0.21 (and not 1.0.19) because there is this patch also pending (http://patchwork.openwrt.org/patch/1740/) Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> git-svn-id: svn://svn.openwrt.org/openwrt/packages@30833 3c298f89-4303-0410-b956-a3cf2f4a3e73
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2010-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=multiwan
|
|
PKG_VERSION:=1.0.21
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/multiwan
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+ip +iptables +kmod-ipt-conntrack +iptables-mod-conntrack-extra +iptables-mod-ipopt
|
|
TITLE:=Simple multi WAN configuration
|
|
URL:=ftp://ftp.netlab7.com/
|
|
MAINTAINER:=Craig M. Coffee <craigc@netlab7.com>
|
|
endef
|
|
|
|
define Package/multiwan/description
|
|
An agent script that makes Multi-WAN configuration simple,
|
|
easy and manageable. Complete with load balancing, failover and an easy
|
|
to manage traffic ruleset.
|
|
endef
|
|
|
|
define Package/multiwan/conffiles
|
|
/etc/config/multiwan
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/multiwan/install
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
define Package/multiwan/postinst
|
|
[ -n "$${IPKG_INSTROOT}" ] || /etc/init.d/multiwan enable
|
|
exit 0
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,multiwan))
|