summaryrefslogtreecommitdiff
path: root/package/comgt
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-05-26 20:14:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-05-26 20:14:42 +0000
commitf6f89817e30255c3e9503181ab464308504298df (patch)
tree5fa510463d23ce4c64ae4459d103218ac8a202dc /package/comgt
parent0ab7d18462b9ea1d46191aedb16d4380d3c1aa0a (diff)
downloadmtk-20170518-f6f89817e30255c3e9503181ab464308504298df.zip
mtk-20170518-f6f89817e30255c3e9503181ab464308504298df.tar.gz
mtk-20170518-f6f89817e30255c3e9503181ab464308504298df.tar.bz2
comgt: remove obsolete iptables support code
SVN-Revision: 21574
Diffstat (limited to 'package/comgt')
-rw-r--r--package/comgt/Makefile2
-rw-r--r--package/comgt/files/3g.iface6
2 files changed, 1 insertions, 7 deletions
diff --git a/package/comgt/Makefile b/package/comgt/Makefile
index 97ce6c2..a7c45c5 100644
--- a/package/comgt/Makefile
+++ b/package/comgt/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=comgt
PKG_VERSION:=0.32
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz
PKG_SOURCE_URL:=@SF/comgt
diff --git a/package/comgt/files/3g.iface b/package/comgt/files/3g.iface
index cd4e4cc..a89f053 100644
--- a/package/comgt/files/3g.iface
+++ b/package/comgt/files/3g.iface
@@ -6,15 +6,9 @@ config_get proto "$INTERFACE" proto
config_get iface "$INTERFACE" ifname
case "$ACTION" in
ifup)
- iptables -I LAN_ACCEPT 1 -i "$iface" -j RETURN
- iptables -A FORWARD -o "$iface" -j ACCEPT
- iptables -t nat -A POSTROUTING -o "$iface" -j MASQUERADE
set_3g_led 1 1 0
;;
ifdown)
- iptables -D LAN_ACCEPT -i "$iface" -j RETURN
- iptables -D FORWARD -o "$iface" -j ACCEPT
- iptables -t nat -D POSTROUTING -o "$iface" -j MASQUERADE
set_3g_led 0 0 0
;;
esac