1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 21:48:23 +02:00

ppp: honour option auto in atm hotplug

SVN-Revision: 23531
This commit is contained in:
Jo-Philipp Wich 2010-10-19 07:01:38 +00:00
parent 6029e1b618
commit 191bf37328

@ -10,10 +10,13 @@ if [ "$ACTION" = "add" ]; then
local up
config_get_bool up "$ifc" up 0
local auto
config_get_bool auto "$ifc" auto 1
local proto
config_get proto "$ifc" proto
if [ "$proto" = "pppoa" ] && [ "$up" != 1 ]; then
if [ "$proto" = "pppoa" ] && [ "$up" != 1 ] && [ "$auto" = 1 ]; then
found=1
( sleep 1; ifup "$ifc" ) &
fi