acd17d6190
Hi Attached modified patchs for multiwan and luci-app-multiwan Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> Le 19/12/2011 18:30, Etienne Champetier a écrit : > Hi > > Here follows the patch for luci multiwan package > I've also opened a ticket on the luci trac > > Regards > > Le 19/12/2011 16:38, Etienne Champetier a écrit : >> Hi >> >> The only mean to disable multiwan is to delete the symlink in /etc/rc.d, but if you make a backup and restore it you have to re-delete the symlink. >> >> This small patch add an "enabled" option to multiwan script. >> >> It will allow me to have one image per router model, not one with multiwan and one without. >> >> Best regards >> >> Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> >> >> >> >> >> _______________________________________________ >> openwrt-devel mailing list >> openwrt-devel@lists.openwrt.org >> https://lists.openwrt.org/mailman/listinfo/openwrt-devel >> >> >> _______________________________________________ >> openwrt-devel mailing list >> openwrt-devel@lists.openwrt.org >> https://lists.openwrt.org/mailman/listinfo/openwrt-devel git-svn-id: svn://svn.openwrt.org/openwrt/packages@30832 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.20
|
|
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))
|