1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-27 16:01:05 +02:00

[package] ppp: convert dos line endings in 20-atm-modem hotplug handler to unix format

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21426 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-05-11 19:43:27 +00:00
parent 6f62ceba39
commit 93c804a366

View File

@ -1,25 +1,25 @@
#!/bin/sh #!/bin/sh
if [ "$ACTION" = "add" ]; then if [ "$ACTION" = "add" ]; then
include /lib/network include /lib/network
scan_interfaces scan_interfaces
local found=0 local found=0
local ifc local ifc
for ifc in $interfaces; do for ifc in $interfaces; do
local up local up
config_get_bool up "$ifc" up 0 config_get_bool up "$ifc" up 0
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 ]; then
found=1 found=1
( sleep 1; ifup "$ifc" ) & ( sleep 1; ifup "$ifc" ) &
fi fi
done done
if [ "$found" != 1 ]; then if [ "$found" != 1 ]; then
logger "Found no matching interface for DSL device $DEVICENAME" logger "Found no matching interface for DSL device $DEVICENAME"
fi fi
fi fi