diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-26 20:14:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-26 20:14:42 +0000 |
commit | f6f89817e30255c3e9503181ab464308504298df (patch) | |
tree | 5fa510463d23ce4c64ae4459d103218ac8a202dc /package | |
parent | 0ab7d18462b9ea1d46191aedb16d4380d3c1aa0a (diff) | |
download | upstream-f6f89817e30255c3e9503181ab464308504298df.tar.gz upstream-f6f89817e30255c3e9503181ab464308504298df.tar.bz2 upstream-f6f89817e30255c3e9503181ab464308504298df.zip |
comgt: remove obsolete iptables support code
SVN-Revision: 21574
Diffstat (limited to 'package')
-rw-r--r-- | package/comgt/Makefile | 2 | ||||
-rw-r--r-- | package/comgt/files/3g.iface | 6 |
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 |