aboutsummaryrefslogtreecommitdiffstats
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
commite49c6bc4d75f8da34c73193fc3b2d86904fb5ba5 (patch)
tree788014577a68ae3a7339f9026d54d044fc3d4b30 /package/comgt
parent02c3a2aa5315929371d85e336bee9e5760f94be2 (diff)
downloadupstream-e49c6bc4d75f8da34c73193fc3b2d86904fb5ba5.tar.gz
upstream-e49c6bc4d75f8da34c73193fc3b2d86904fb5ba5.tar.bz2
upstream-e49c6bc4d75f8da34c73193fc3b2d86904fb5ba5.zip
[package] comgt: remove obsolete iptables support code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21574 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 97ce6c2b8c..a7c45c558a 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 cd4e4cc5c6..a89f053873 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