home *** CD-ROM | disk | FTP | other *** search
/ SunSoft Catalyst 1995 September to December / CDware_Sep-Dec_1995.bin / .products / Morning-Star / Install < prev    next >
Text File  |  1995-09-04  |  907b  |  25 lines

  1. #!/bin/sh 
  2.  
  3. echo
  4. echo "The Morning Star PPP installation assumes that you have"
  5. echo "a group \(either in your NIS group map or in /etc/group\) called"
  6. echo "\"ppp\".  Before continuing with the install, please add such"
  7. echo "a group in the appropriate place."
  8. echo
  9. echo Press any key to continue
  10. read x
  11.  
  12. DIR=`pwd`
  13. echo "You must be root to install MST PPP. Executing su..."
  14. su root -c "cd /tmp; zcat $DIR/mst-ppp.tar.Z | tar xvf -; pkgadd -d /tmp mst-ppp; chgrp ppp /etc/pppd; rm -r /tmp/mst-ppp"
  15.  
  16. echo
  17. echo "For Morning Star PPP to operate, you must get a demo license"
  18. echo "key from Morning Star via email, phone, or fax. Read the"
  19. echo "Trial Software page to learn how to get this key."
  20. echo
  21. echo "Also read the file /usr/lib/ppp/misc/README, and the pppd,"
  22. echo "ppp.Auth, ppp.Devices, ppp.Dialers, ppp.Filter, and ppp.Systems"
  23. echo "man pages for more installation and configuration details."
  24. echo
  25.