X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Fppp%2Ffiles%2Fetc%2Fhotplug.d%2Fatm%2F20-atm-modem;h=4fd9b9c66224662586401e8d39f4ca6dbc085e48;hb=0f872e4f27ad22d4e493b38ce22fb7129a6f3681;hp=45ef54239c9b0c9f60c5851eab63a9f4f9429856;hpb=18181c5b0672eb3179f385452f2e9733f3014841;p=openwrt-10.03%2F.git diff --git a/package/ppp/files/etc/hotplug.d/atm/20-atm-modem b/package/ppp/files/etc/hotplug.d/atm/20-atm-modem index 45ef54239..4fd9b9c66 100644 --- a/package/ppp/files/etc/hotplug.d/atm/20-atm-modem +++ b/package/ppp/files/etc/hotplug.d/atm/20-atm-modem @@ -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