pppsetup 481 B

123456789101112131415161718
  1. #!/bin/sh
  2. #BK july 2003
  3. if [ ! -e /etc/modemdevice ];then
  4. echo "You are not yet ready to configure the PPP..."
  5. echo "First run \"Modem Wizard\" to choose a modem"
  6. echo " "
  7. else
  8. DEVM="`cat /etc/modemdevice`"
  9. echo "You previously used \"Modem Wizard\" and chose $DEVM"
  10. echo "HOWEVER, /dev/modem has been linked to this, so PLEASE"
  11. echo "type \"modem\" when asked below for the modem device..."
  12. /usr/sbin/ppp -s
  13. sleep 1
  14. fi
  15. echo -n "Press ENTER key to continue..."
  16. read VAL1