home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
po7_win
/
install
/
user.pin
< prev
next >
Wrap
Text File
|
1995-01-11
|
1KB
|
40 lines
/* Copyright (c) Oracle Corporation 1994. All Rights Reserved */
/*****************************************************************************
NAME
user.pin - custom post-install script
DESCRIPTION
This script is a post-install script for scripters' use
MODIFIED MM/DD/YY Reason
zzerhoun 12/30/94 Remove user.pin after use
zzerhoun 12/28/94 Executes shut down script if not custom install
akelley 09/29/94 Added "In case of floppy" section from MINg's file
bsabol 08/17/94 Modified
bsabol 04/23/94 Created
*****************************************************************************/
{
if (user_action == 'install)
{
{ install_type = install_type; }
['UNBOUND_VARIABLE: install_type = "Custom Install";]
{ execute("%installer_home%\%operating_system%.pin");}
['success:
{
if (install_type == "Custom Install")
signal('success,instantiate(installation_successful));
else
information_dialog(instantiate(installation_successful),'NO_CANCEL);
}
]
if (install_type != "Custom Install")
{ execute("%installer_home%\%operating_system%.shd");}
[ 'default: continue();]
remove_file("%installer_home%\user.pin");
}
}