1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-21 01:45:00 +03:00
openwrt-xburst/package/comgt/files/3g.iface
jow bd77cd72e1 [package] comgt: remove obsolete iptables support code
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21574 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-26 20:14:42 +00:00

16 lines
251 B
Plaintext

include /lib/network
config_load network
scan_interfaces
config_get proto "$INTERFACE" proto
[ "$proto" = "3g" ] && {
config_get iface "$INTERFACE" ifname
case "$ACTION" in
ifup)
set_3g_led 1 1 0
;;
ifdown)
set_3g_led 0 0 0
;;
esac
}