home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / apps / pcnfsd / install / CheckItOut < prev    next >
Encoding:
Text File  |  1994-08-02  |  887 b   |  37 lines

  1. #! /bin/csh
  2. ########################################################
  3. # Script file to exercise the PS-NFS daemon test program
  4. ########################################################
  5. #
  6. # The name of the PC-NFS server, or localhost if same machine
  7. #
  8. setenv SERVER        localhost
  9. #
  10. # The name of the test machine, or localhost if same machine
  11. #
  12. setenv HOST        localhost
  13. #
  14. # The name of a printer on the server, or the following for the default
  15. #
  16. setenv PRINTER        `lpstat -d | sed s/'system default destination: '//`
  17. #
  18. # The name a valid user on the server machine
  19. #
  20. setenv TEST_USER    guest
  21. #
  22. # The password for the above user, or "\n" if none
  23. #
  24. setenv PASSWORD        "\n"
  25. #
  26. # The name for the test log file
  27. #
  28. setenv LOGFILE        clnt.pcnfsd.log
  29. #
  30. # Run the program with the above parameters
  31. #
  32. ./clnt.pcnfsd $SERVER $HOST $PRINTER $TEST_USER $PASSWORD >$LOGFILE
  33. #
  34. # Display the test results
  35. #
  36. more $LOGFILE
  37.