home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 August - Disc 1 / PCNET_CD_2006_08_1.iso / linux / puppy-barebones-2.01r2.iso / pup_201.sfs / usr / sbin / pppsetup < prev    next >
Encoding:
Text File  |  2003-09-14  |  481 b   |  18 lines

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