You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
251 B
16 lines
251 B
18 years ago
|
include /lib/network
|
||
|
config_load network
|
||
|
scan_interfaces
|
||
|
config_get proto "$INTERFACE" proto
|
||
|
[ "$proto" = "3g" ] && {
|
||
18 years ago
|
config_get iface "$INTERFACE" ifname
|
||
18 years ago
|
case "$ACTION" in
|
||
18 years ago
|
ifup)
|
||
|
set_3g_led 1 1 0
|
||
|
;;
|
||
|
ifdown)
|
||
|
set_3g_led 0 0 0
|
||
|
;;
|
||
18 years ago
|
esac
|
||
|
}
|