#
# /etc/rc.d/adsl start|stop an eagle-usb modem aDSL connection
#

if [ "$1" == "start" ]; then 

sleep 10
eaglectrl -d
sleep 50
startadsl

elif [ "$1" == "stop" ]; then 

stopadsl

else 

echo "usage $0 start|stop"

fi

# End of file
