home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / install / user.pvf < prev    next >
Text File  |  1994-12-30  |  905b  |  31 lines

  1. /* Copyright (c) Oracle Corporation 1994.  All Rights Reserved */
  2.  
  3. /************************************************************************
  4.   NAME
  5.     user.pvf - user-defined .pvf script
  6.  
  7.   DESCRIPTION
  8.     This script allows users access to their own customizable .pvf script.
  9.  
  10.   OWNER
  11.     Bryan Sabol
  12.  
  13.   MODIFIED    MM/DD/YY  Reason
  14.     zzerhoun   12/30/94 Modified for Personal Oracle
  15.     AKelley    07/13/94 Added "in case of floppy" section from LMurphy's file
  16.     bsabol     03/18/94 Created.
  17. **************************************************************************/
  18.  
  19. {
  20.   dirname = directory_name(current_script);
  21.   if (directory_name(dirname) == dirname)
  22.     pinname = "%dirname%user.pin";
  23.   else
  24.     pinname = "%dirname%\user.pin";
  25.  
  26.   if (exists(pinname))
  27.     copy_file(pinname,"%installer_home%\");
  28.  
  29.   return(execute("%installer_home%\%operating_system%.pvf"));
  30. }
  31.