mirror of https://github.com/hak5/openwrt-owl.git
parent
6029e1b618
commit
191bf37328
|
@ -10,10 +10,13 @@ if [ "$ACTION" = "add" ]; then
|
||||||
local up
|
local up
|
||||||
config_get_bool up "$ifc" up 0
|
config_get_bool up "$ifc" up 0
|
||||||
|
|
||||||
|
local auto
|
||||||
|
config_get_bool auto "$ifc" auto 1
|
||||||
|
|
||||||
local proto
|
local proto
|
||||||
config_get proto "$ifc" proto
|
config_get proto "$ifc" proto
|
||||||
|
|
||||||
if [ "$proto" = "pppoa" ] && [ "$up" != 1 ]; then
|
if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then
|
||||||
found=1
|
found=1
|
||||||
( sleep 1; ifup "$ifc" ) &
|
( sleep 1; ifup "$ifc" ) &
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue