home *** CD-ROM | disk | FTP | other *** search
/ SoftPC 3.0 / softpc30_win.iso / SoftPC_Pro.pkg / SoftPC_Pro.pre_install < prev    next >
Text File  |  1993-02-02  |  1KB  |  50 lines

  1. #!/bin/sh
  2. #[
  3. #    Name:            SoftPC.pre_install
  4. #    Derived From:        Original
  5. #    Author:            Philippa Watson
  6. #    Created On:        9 November 1992
  7. #    Sccs ID:        %G% %W%
  8. #    Purpose:        Run necessary pre-installation for NeXT 68k
  9. #                SoftPC 3.00. This script is used for both
  10. #                SoftPC Professional and SoftPC with Windows.
  11. #    Usage:            Called automatically by the Installer before
  12. #                installation. Two arguments are provided: the
  13. #                first is the absolute pathname of the installer
  14. #                package when this script lives. The second
  15. #                argument is the absolute pathname of the
  16. #                location where the contents of this package
  17. #                will be installed. We use neither but simply
  18. #                check that the user is root.
  19. #
  20. #    (c)Copyright Insignia Solutions Ltd., 1992. All rights reserved.
  21. #
  22. #    Rcs ID block:
  23. #        $Source: /usr/vpc/users/support/masterNeXT3.0/host/bin/RCS/./SoftPC.pre_install,v $ 
  24. #        $Revision: 1.1 $
  25. #        $Date: 92/11/09 16:04:30 $
  26. #        $Author: pjw $
  27. #]
  28.  
  29. #
  30. # Messages (these conform to the requirements in Concepts/Installer.rtf).
  31. #
  32.  
  33. E_OK="OK"
  34. E_NOT_ROOT="FAILED (you must be logged in as root to install SoftPC)"
  35.  
  36. #
  37. # Are we root?
  38. #
  39. if test `whoami` != root
  40. then
  41.     echo $E_NOT_ROOT
  42.     exit 1
  43. fi
  44.  
  45. #
  46. # All done.
  47. #
  48. echo $E_OK
  49. exit 0
  50.