home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / wtest / clico / sunsoft / pcnfs51 / src / dopcnfsd.sh next >
Linux/UNIX/POSIX Shell Script  |  1994-08-26  |  2KB  |  70 lines

  1. #!/bin/sh
  2. # RE_SID: @(%)/usr/re/builds/pcnfs/unix/SCCS/s.dopcnfsd.sh 1.6 94/02/07 12:03:13 SMI
  3. #
  4. #  @(#)dopcnfsd.sh    1.6    2/7/94
  5. # dopcnfsd.sh
  6. #
  7. # This script will unpack the pcnfsd version 2 sources, including a client
  8. # test program. It does NOT make or install any of the individual components. 
  9. # This must be done manually. Refer to the section on Installing PCNFSD in 
  10. # the PC-NFS Installation and Configuration Guide for more information.
  11. #
  12. # To use this script you must first have copied the following files from the
  13. # PC-NFS distribution diskette:
  14. #        dopcnfsd.sh   ( this file )
  15. #        pcnfsd.taz    ( compressed tar file )
  16. # to some place on the system you are going to perform the install.  Usually
  17. # Usually /usr/tmp is a good place.  This script does not take any 
  18. # arguments.
  19. #
  20.  
  21. PCNFSD=pcnfsd
  22.  
  23. fatalerror ( )   # handle fatal errors
  24. {
  25.     echo " " ; echo "*** FATAL ERROR: $@" 1>&2 ; exit 1
  26. }
  27.  
  28. if [ $# != 0 ]
  29. then
  30.     fatalerror "   Usage: dopcnfsd"
  31. fi
  32.  
  33. echo " "
  34. echo "Unpack PCNFSD shell script"
  35. echo " "
  36.  
  37. if [ ! -f $PCNFSD.taz ]
  38. then
  39.     fatalerror "The compressed tar file $PCNFSD.taz is missing." 
  40. fi
  41.  
  42. echo " "
  43. echo "Uncompressing the $PCNFSD.taz file..."
  44. mv -f $PCNFSD.taz $PCNFSD.tar.Z
  45. uncompress -v $PCNFSD.tar.Z
  46. if [ $? != 0 ] ; then
  47.     fatalerror "Uncompressing $PCNFSD.taz failed."
  48. fi
  49.  
  50. echo " "
  51. echo "Unpacking the $PCNFSD.tar file..."
  52. tar -xvf $PCNFSD.tar
  53. if [ $? != 0 ] ; then
  54.     fatalerror "Extracting files from $PCNFSD.tar failed."
  55. fi
  56.  
  57. echo " "
  58. echo "Unpack PCNFSD script completed."
  59. echo " "
  60. echo "You can build the daemon and test programs by running"
  61. echo "the makefile provided."
  62. echo "Pre-compiled versions of the daemon and test program"
  63. echo "are included in this distribution in the OS specific directories."
  64. echo " "
  65. echo "Refer to the PC-NFS Installation and Configuration Guide for details."
  66. echo " "
  67. echo " "
  68.  
  69.  
  70.