home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.0 (User) / OS_user_4.0.iso / usr / template / client / etc / ppp / Examples / rc.ppp < prev    next >
Encoding:
Text File  |  1995-11-06  |  506 b   |  19 lines

  1. #!/bin/sh
  2. #
  3. # This is an example script that will load the LKS.
  4. # You should place an entry in your /etc/rc.local
  5. # that calls this file.  For example if you place
  6. # this file in the directory /etc/ppp, then the line
  7. # you add to /etc/rc.local will look like:
  8. #     sh /etc/ppp/rc.local
  9. #
  10. # You must update the PATH variable to point
  11. # to the place where the ppp_reloc file is
  12. # kept.  
  13. #     
  14. PATH=/usr/lib/ppp
  15. if [ -f ${PATH}/ppp_reloc ]; then
  16.     /usr/etc/kl_util -a ${PATH}/ppp_reloc
  17.     (echo -n ' ppp')
  18. fi
  19.