home *** CD-ROM | disk | FTP | other *** search
- :
- #!/bin/sh
-
- #
- # $Header: oracle.in.pp,v 6.54.1.2 90/02/02 16:56:01 eho Exp $ oracle.install
- #
-
- #
- # oracle.install
- #
- # Master installation script for ORACLE products.
- #
- # Usage: oracle.install [-d] [-n] [product ... ]
- # The -d option turns on ORACLE_DEFAULT so that no questions will be
- # asked. The default values will always be used.
- # The -n option turns on NO_CONFIRM which suppresses asking whether
- # individual products should be installed. All products will be
- # installed.
- # If product names are present on the command line, only those present
- # will be considered for installation.
- #
- # It is recommended, but not required, that all other ORACLE INSTALL
- # scripts be run from this script.
- # A normal installation would entail running the installation scripts
- # in the following order:
- # oracle.install - invoked by 'root'
- # root.install
- # oracle.install - invoked by 'oracle'
- # rdbms.install
- # <net driver>.install
- # <product>.install
- #
- # The SQL*Net drivers should be installed after the RDBMS and prior to
- # the installation of other products.
- #
- # The ordering for product installation by this program is controlled by
- # the <product>/install/<product>.key files. The 1st field in these files
- # is an indicator of the relative order in which the product should be
- # installed.
- #
-
- NETLIBNAME="nsl_s"
- PHYS_BLK_SIZE=2048
- VNDR_NETLIBS="-lnsl_s "
- CHOWN=/bin/chown
- MAKE=make
- ORACLE_LPPROG="/usr/bin/lp"
- ORACLE_PAGER="/usr/bin/more"
- ORACLE_LPSTAT="/usr/bin/lpstat"
-
- #
- # Allow verification/trace to be turned on and off.
- #
- case "$ORACLE_TRACE" in
- T) set -x ;;
- esac
-
- #
- # Print abort message on interupt.
- #
- trap 'echo "ORACLE Installation Aborted!"; exit' 1 2 3 15
-
- #
- # Make sure that the script is being run from $ORACLE_HOME.
- # Check that at least the $ORACLE_HOME/install directory exists.
- #
- case "$ORACLE_HOME" in
- "") DIR=`pwd`
- case "`basename $DIR`" in
- install) cd .. ;;
- esac
- ORACLE_HOME=`pwd` ;;
- *) cd $ORACLE_HOME ;;
- esac
-
- if [ ! -d $ORACLE_HOME/install ] ; then
- echo ""
- echo "No ORACLE install directory found in $ORACLE_HOME. "
- echo "Check the following:"
- echo " . The distribution has been loaded onto disk and is readable."
- echo " . oracle.install is being invoked from the directory in which ORACLE"
- echo " was loaded."
- echo " . The environment variable ORACLE_HOME is either undefined, or set "
- echo " to the directory in which ORACLE was loaded."
- echo "Exiting ORACLE install."
- sync ; exit 1
- fi
- INSTALL_HOME="$ORACLE_HOME/install"; export INSTALL_HOME
-
- PROD=
- PRODUCTS=
- for i in $* ; do
- case $i in
- -n) NO_CONFIRM=T ;;
- -d) ORACLE_DEFAULT=T ; export ORACLE_DEFAULT ;;
- *) if [ -d $ORACLE_HOME/$i ] ; then
- PRODUCTS="$PRODUCTS $i"
- else
- echo ""
- echo "No product directory in $ORACLE_HOME for ${i}."
- echo "Exiting installation."
- sync ; exit 1
- fi ;;
- esac
- done
-
- # This is to let sub-installs know they are running under oracle.install
- ORACLE_INSTALL=T
- export ORACLE_INSTALL
-
- #
- # Determine how to suppress newline with echo command.
- #
- if echo "\c" | grep c >/dev/null 2>&1; then
- N='-n'
- else
- C='\c'
- fi
- export N C
-
- #
- # Determine whether to use test -x or test -f
- #
- if test -x "$0" > /dev/null 2>&1 ; then
- TESTX=-x
- else
- TESTX=-f
- fi
- export TESTX
-
- #
- # Is the script being run by a super user?
- #
- > /tmp/fil$$
- INAME=`ls -l /tmp/fil$$ | awk '{ print $3 }'`
- rm -f /tmp/fil$$
- case $INAME in
- root) SUPER_USER=TRUE ;;
- *) SUPER_USER=FALSE ;;
- esac
-
- #
- # Display install banner and information about default answers.
- #
- echo "Running ORACLE install program..."
- echo "
- Note: All questions are followed by a default value in brackets \"[default]\".
- Press RETURN to use this default rather than entering a value.
- Use a \"!\" to run a sub-shell. When you exit the sub-shell, you will
- be re-prompted with the original default value.
- "
- echo $N "Press RETURN to continue. $C"
- DEFLT=""; . $INSTALL_HOME/read.sh; WAIT=$RDVAR
-
- #
- # Get defaults from $INSTALL_HOME/.defaults if it exists
- #
- if [ -r $INSTALL_HOME/.defaults ] ; then
- . $INSTALL_HOME/.defaults
- fi
-
- #
- # Setup installation log file.
- #
- echo ""
- while : ; do
- echo $N "Save install output? $C"
- DEFLT="Y"; . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- y|Y) echo $N "Name of log file? $C"
- DEFLT="${LOG-install.log}"; . $INSTALL_HOME/read.sh
- case $RDVAR in
- /*) LOG=$RDVAR ;;
- *) LOG=$INSTALL_HOME/$RDVAR ;;
- esac
- # test if $LOG already exists. If yes, ask user
- # if it should be overwritten.
- if [ -r $LOG ] ; then
- echo $N "$LOG already exists. Overwrite? $C"
- DEFLT="Y"; . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- y|Y) ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) echo $N "Please enter the name of a new file. $C"
- DEFLT="new$$.log"
- . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case $RDVAR in
- /*) LOG=$RDVAR ;;
- *) LOG=$INSTALL_HOME/$RDVAR ;;
- esac
- ;;
- esac
- fi
- echo "ORACLE INSTALLATION DIAGNOSTICS FILE" > $LOG
- /bin/date >> $LOG 2>/dev/null
- echo "" >> $LOG
- chmod 666 $LOG
- break ;;
- n|N) LOG=/dev/null ; break ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) echo "Enter Y, N or Q please." ;;
- esac
- done
- echo ""
- export LOG
-
- #
- # Determine whether this is an update or an install
- #
- echo "
-
- Please designate whether this is a fresh install or an update:
-
- 1 Fresh install of ORACLE from scratch.
-
- 2 Update install of an existing ORACLE database.
-
- Q Quit.
-
- "
- while : ; do
- echo $N "Enter 1, 2 or Q: $C"
- DEFLT="1"; . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- 1) UPDATE=N ; break ;;
- 2) UPDATE=Y ; break ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- esac
- done
- echo ""
- export UPDATE
-
- #
- # Setup ORACLE_HOME, ORACLE_SID and ORACLE_OWNER.
- #
- echo ""
- echo "Checking ORACLE environment variables for installation..." | tee -a $LOG
- echo ""
- case "$ORACLE_HOME" in
- "") DEFLT=`pwd` ;;
- *) DEFLT="$ORACLE_HOME" ;;
- esac
- echo ""
- echo $N "Enter home directory for ORACLE database or Q to quit. $C"
- . $INSTALL_HOME/read.sh; ORACLE_HOME=$RDVAR
- case $ORACLE_HOME in
- q|Q) echo "User requested abort."
- sync ; exit 0 ;;
- esac
- echo ""
- export ORACLE_HOME
-
- case "$ORACLE_OWNER" in
- "") DEFLT="${USER-$LOGNAME}"
- case "$DEFLT" in
- root) DEFLT=oracle ;;
- esac ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) DEFLT="$ORACLE_OWNER" ;;
- esac
- echo ""
- echo "Enter the login name for the owner of this ORACLE database"
- echo $N "or Q to quit. $C"
- . $INSTALL_HOME/read.sh; ORACLE_OWNER=$RDVAR
- if [ "$ORACLE_OWNER" != "${USER-$LOGNAME}" -a "$SUPER_USER" = "FALSE" ] ; then
- echo ""
- echo "Only super-user can install ORACLE under another userid."
- echo "Exiting installation."
- sync ; exit 1
- fi
- if [ "$ORACLE_OWNER" = "Q" -o "$ORACLE_OWNER" = "q" ] ; then
- echo "User requested abort."
- sync ; exit 0
- fi
- echo ""
- export ORACLE_OWNER
-
- case $ORACLE_SID in
- "") DEFLT=$ORACLE_OWNER ;;
- *) DEFLT=$ORACLE_SID ;;
- esac
-
- DEFLT=`echo $DEFLT | awk '{print substr($1,1,4)}'`
-
- echo ""
- echo $N "Enter string for ORACLE system identifier. $C"
- . $INSTALL_HOME/read.sh; ORACLE_SID=$RDVAR
- echo ""
- export ORACLE_SID
-
- #
- # Make the defaults file
- #
- cat <<END > $INSTALL_HOME/.defaults
- LOG="$LOG"
- ORACLE_HOME="$ORACLE_HOME"
- ORACLE_SID="$ORACLE_SID"
- ORACLE_OWNER="$ORACLE_OWNER"
- END
- chmod 666 $INSTALL_HOME/.defaults
- case "$SUPER_USER" in
- TRUE)
- $CHOWN $ORACLE_OWNER $INSTALL_HOME/.defaults
- ;;
- esac
-
- #
- # Adjust PATH.
- #
- # This ensures that the path begins with ":"
- PATH=`echo $PATH | sed -e '/^[^:]/s/^/:/' -e 's/^:\.:/:/'`
- # This ensures that only one occurrance of "$ORACLE_HOME/bin" is in PATH
- STRIP=`echo $ORACLE_HOME/bin | sed "s./.\\\\\/.g"`
- STRIP=$STRIP"[:]"
- PATH=:$ORACLE_HOME/install:$ORACLE_HOME/bin`echo $PATH | sed "/${STRIP}/s///g"`
- export PATH
-
- #
- # Generate oracle.key
- #
- cat $ORACLE_HOME/*/install/*.key | sort -n > $ORACLE_HOME/install/oracle.key
- case "$SUPER_USER" in
- TRUE)
- $CHOWN $ORACLE_OWNER $INSTALL_HOME/oracle.key
- ;;
- esac
- # Set ALL_PRODS to a list of all products. Export ALL_PRODS for root.install
- ALL_PRODS=`awk -F: '{ print $2 }' $ORACLE_HOME/install/oracle.key`
- export ALL_PRODS
-
- #
- # If oracle.install is being run by a super-user, prompt to run root.install.
- #
- case "$SUPER_USER" in
- TRUE)
- echo ""
- while : ; do
- echo $N "Run ROOT install? $C"
- DEFLT="Y"; . $INSTALL_HOME/read.sh; INSTALL=$RDVAR
- case "$INSTALL" in
-
- y|Y) chmod 554 $INSTALL_HOME/root.install > $LOG 2>&1
-
- if [ $TESTX $INSTALL_HOME/root.install ] ; then
- $INSTALL_HOME/root.install
- else
- echo "$INSTALL_HOME/root.install not found or not executable." \
- | tee -a $LOG
- fi
- break ;;
- n|N) break ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) echo "Enter Y, N or Q please." ;;
- esac
- done ;;
- esac
-
- #
- # Check if root.install has been run before. If not, display a warning message.
- #
- if [ ! -f $ORACLE_HOME/install/.root ] ; then
- echo "
- You need to run the root installation script as the super user
- before proceding with the installation of the products."
- echo $N "Would you like to continue? $C"
- DEFLT="N"; . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- n|N) echo "User requested abort." ; sync ; exit 0 ;;
- esac
- fi
-
- # If product set not supplied on command line then assemble list of
- # products now. Include all products if NO_CONFIRM is set, otherwise
- # prompt for inclusion of each product found in $ORACLE_HOME.
- echo "
- "
- if [ "$PRODUCTS" = "" ] ; then
- for PROD in $ALL_PRODS
- do
- PROD_INFO=`fgrep :$PROD: $ORACLE_HOME/install/oracle.key`
- PROD_NAME=`echo $PROD_INFO | awk -F: '{ print $3 }'`
- if [ "$NO_CONFIRM" != "T" ] ; then
- while : ; do
- if [ "$UPDATE" = "Y" ] ; then
- echo $N "Update $PROD_NAME? $C"
- else
- echo $N "Install $PROD_NAME? $C"
- fi
- # Install the products? If running as root, default
- # is N; otherwise default is Y.
- case "$SUPER_USER" in
- TRUE) DEFLT="N" ;;
- *) DEFLT="Y" ;;
- esac
- . $INSTALL_HOME/read.sh; INSTALL=$RDVAR
- case "$INSTALL" in
- Y|y) PRODUCTS="$PRODUCTS $PROD" ;
- # This indicates to SQL*Net installations that
- # RDBMS is also being installed at this time.
- case "$PROD" in
- rdbms) RDBMS_INSTALL="T"
- export RDBMS_INSTALL ;;
- tpo) TPO_INSTALL="T"
- export TPO_INSTALL ;;
- plsql) PLSQL_INSTALL="T"
- export PLSQL_INSTALL ;;
- tcp) TCP_INSTALL="T"
- export TCP_INSTALL ;;
- async) ASYNC_INSTALL="T"
- export ASYNC_INSTALL ;;
- dnt) DNT_INSTALL="T"
- export DNT_INSTALL ;;
- esac
- break ;;
- N|n) break ;;
- Q|q) echo "User requested abort." ; sync ; exit 0 ;;
- *) echo "Enter Y, N, or Q please." ;;
- esac
- done
- else
- PRODUCTS="$PRODUCTS $PROD"
- fi
- done
- else
- # If PRODUCTS != "", the input product names need to be put in the
- # order specified in oracle.key.
- for i in $PRODUCTS
- do
- fgrep :$i: $INSTALL_HOME/oracle.key >> $INSTALL_HOME/tmp1$$
- case "$i" in
- rdbms) RDBMS_INSTALL="T"
- export RDBMS_INSTALL ;;
- tpo) TPO_INSTALL="T"
- export TPO_INSTALL ;;
- plsql) PLSQL_INSTALL="T"
- export PLSQL_INSTALL ;;
- tcp) TCP_INSTALL="T"
- export TCP_INSTALL ;;
- async) ASYNC_INSTALL="T"
- export ASYNC_INSTALL ;;
- dnt) DNT_INSTALL="T"
- export DNT_INSTALL ;;
- esac
- done
- sort -n $INSTALL_HOME/tmp1$$ > $INSTALL_HOME/tmp2$$
- PRODUCTS=`awk -F: '{ print $2 }' $INSTALL_HOME/tmp2$$`
- rm $INSTALL_HOME/tmp1$$ $INSTALL_HOME/tmp2$$
-
- fi
-
- if [ "$TCP_INSTALL" = "T" ]
- then
- echo "ENTER TCP ENVIRONMENT:
-
- 1 HOST_BASED
-
- 2 EXCELAN
-
- Q Quit
- "
- while : ; do
- if [ -f /lib/libsocket.a ]; then
- DEFLT="2"
- else
- if [ -f /usr/lib/libsocket.a ]; then
- DEFLT="1"
- else
- DEFLT="Q"
- echo $N "Warning cannot locate either vendor tcp librari
- es" | tee -a $LOG
- echo $N "Host-based: /usr/lib/libsocket.a" | tee -a $LOG
- echo $N "Excelan: /usr/lib/lib{socket,select}.a" | tee -
- a $LOG
-
- fi
- fi
- echo $N "ENTER 1, 2 or Q: $C"
- . $INSTALL_HOME/read.sh; ANS=$RDVAR
- echo ""
- case "$ANS" in
- 1) TCP_VERS="H" ; break ;;
- 2) TCP_VERS="E" ; break ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) echo "Enter 1, 2 or Q Please."
- esac
- done
- export TCP_VERS
- if [ $TCP_VERS = "E" ]
- then
- for PNAME in $PRODUCTS
- do
- if [ "$PNAME" != "tcptli" ]
- then
- NEWPRODS="$NEWPRODS $PNAME"
- fi
- done
- PRODUCTS=$NEWPRODS
- echo "The SQL*NET tcptli driver is not compatible with the SQL*NET tcp"
- echo "driver for Excelan and will not be installed."
- fi
- fi
-
- if [ "$PRODUCTS" = "" ] ; then
- echo "" | tee -a $LOG
- echo "WARNING: No products installed." | tee -a $LOG
- echo "Make sure there are products in $ORACLE_HOME." | tee -a $LOG
- echo "Exiting."
- sync ; exit 1
- fi
-
- #
- # Ask user about the NLS licence. If user is not licensed for NLS
- # remove all product message files except for the us ones.
- echo "
- "
- echo $N "Are you licensed to use the National Language Support option? $C"
- DEFLT="Y"; . $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- n|N) for file in `ls $ORACLE_HOME/*/mesg/*.ms? \
- | grep -v '.*/mesg/.*us\.ms[bg]' | tr "\012" " "`
- do
- rm -f $file
- done
- ;;
- esac
-
- #
- # Select using the default Oracle executables or relinking on site.
- #
- echo "
-
- Enter N at the next prompt to use the default ORACLE executables,
- or enter Y to relink the executables.
-
- This distribution contains a set of default ORACLE executables
- which have been linked with the following SQL*Net drivers:
-
- Pipe driver
- Fast driver
-
- If you purchased additional SQL*Net drivers and want to use them,
- enter Y at the next prompt. The executables will be relinked.
-
- If you want to use only the default SQL*Net drivers, enter N at
- prompt. The default ORACLE executables will be used; no relinking
- is necessary. In this case you must have a group called \"dba\"
- in /etc/group, and $ORACLE_OWNER must be a member of that group.
- "
- echo $N "Would you like to relink ORACLE executables? $C"
- DEFLT="N" ;. $INSTALL_HOME/read.sh; ANS=$RDVAR
- case "$ANS" in
- n|N) LINK_PRODUCT=F ;;
- q|Q) echo "User requested abort." ; sync ; exit 0 ;;
- *) LINK_PRODUCT=T ;;
- esac
- echo ""
- export LINK_PRODUCT
-
- NET_INSTALL=
-
- for PROD in $PRODUCTS
- do
- PROD_INFO=`fgrep :$PROD: $ORACLE_HOME/install/oracle.key`
- PROD_NAME=`echo $PROD_INFO | awk -F: '{ print $3 }'`
- PROD_INSTALL=`echo $PROD_INFO | awk -F: '{ print $4 }'`
- PROD_HOME=$ORACLE_HOME/$PROD
- SCRIPT=$ORACLE_HOME/${PROD_INSTALL}.install
- chmod 554 $PROD_HOME/install/* > /dev/null 2>&1
- if [ $TESTX $SCRIPT ]; then
- case "$PROD_NAME" in
- "ORACLE RDBMS")
- if [ "$UPDATE" != Y ] ; then # RDBMS initial installation.
- echo ""
- echo "We recommend changing the SYSTEM and SYS account passwords at this point."
- echo $N "Enter new SYSTEM account password: $C"
- DEFLT="manager"; . $INSTALL_HOME/read.sh
- SYSTEM_PASS="system/$RDVAR"
- echo $N "Enter new SYS account password: $C"
- DEFLT="change_on_install"; . $INSTALL_HOME/read.sh
- SYS_PASS=$RDVAR
- echo ""
- export SYSTEM_PASS SYS_PASS
- else
- echo ""
- echo $N "Enter current SYSTEM account password: $C"
- DEFLT="manager"
- . $INSTALL_HOME/read.sh; SYSTEM_PASS=$RDVAR
- SYSTEM_PASS="system/${SYSTEM_PASS}"
- echo ""
- export SYSTEM_PASS
- fi ;;
- SQL*Net*|PL\/SQL|Pro*|*Loader|*Report|*Mail|*Calc|transaction*)
- ;; # System password not required for these products,
- # since the database is not altered during these installs.
- *)
- case "$SYSTEM_PASS" in
- "") echo ""
- echo $N "Enter current SYSTEM account password: $C"
- DEFLT="manager"
- . $INSTALL_HOME/read.sh; SYSTEM_PASS=$RDVAR
- SYSTEM_PASS="system/${SYSTEM_PASS}"
- echo ""
- export SYSTEM_PASS ;;
- esac
- case "$DATABASE_UP" in
- "") #
- # Verify that the ORACLE database if running.
- # Should we let the script try to bring it up if it isn't?
- #
- echo ""
- echo "Checking that database is running..."
- echo ""
- if [ ! -f $ORACLE_HOME/dbs/sgadef${ORACLE_SID}.dbf ] ; then
- echo "RDBMS must be installed and running before proceeding with"
- echo "$PROD_NAME installation."
- echo "Exiting $PROD_NAME install."
- exit 1
- else
- DATABASE_UP="T"
- export DATABASE_UP
- fi;;
- esac
- esac
- # This is used later to determine if the RDBMS executables need
- # to be relinked and the database restarted.
- if [ "$NET_INSTALL" = "" ] ; then
- NET_PROD=`echo $PROD_INFO | fgrep 'SQL*Net'`
- if [ "$NET_PROD" != "" ] ; then
- NET_INSTALL=T
- export NET_INSTALL
- fi
- fi
- # Run the product level install / update script.
- # If create database failed, exit status of rdbms.install
- # will be 10, and oracle.install should abort.
- $SCRIPT
- if test $? -eq 10
- then exit 1
- fi
- else
- echo "Executable install script for $PROD_NAME not found."
- case "$SUPER_USER" in
- FALSE) echo "Have system administrator chown(1) all files in"
- echo "$PROD_HOME to $ORACLE_OWNER, then restart install." ;;
- esac
- sync ; exit 1
- fi
- done
-
- #
- # Rebuild RDBMS executables and restart the database with SQL*Net drivers.
- # Do this only if install contained network drivers but did not contain
- # an RDBMS install.
- #
- if [ "$NET_INSTALL" = "T" -a "$RDBMS_INSTALL" != "T" ] ; then
- echo "" | tee -a $LOG
- echo "Bringing down database to add SQL*Net drivers." | tee -a $LOG
- echo $N "Continue? $C"
- DEFLT="Y" ; . $INSTALL_HOME/read.sh ; ANS=$RDVAR
- case $ANS in
- y|Y) sqldba command=shutdown immediate >> $LOG 2>&1
-
- echo "" | tee -a $LOG
- echo "Rebuilding ORACLE executables with SQL*Net drivers. Please wait..."\
- | tee -a $LOG
- echo ""
- cd $ORACLE_HOME/install
- rm -f $ORACLE_HOME/rdbms/lib/ksms.[os] > /dev/null 2>&1
- $MAKE -f link.mk net >> $LOG 2>&1
-
- cat <<EOF > $INSTALL_HOME/README.install
-
- To complete multi user installation of the ORACLE RDBMS with SQL*Net
- drivers have your system administrator change the protection on the
- ORACLE kernel:
-
- chmod 4755 $ORACLE_HOME/bin/oracle
-
- EOF
- echo "Instructions for completing the RDBMS with SQL*Net installation" | tee -a $LOG
- echo "can be found in $INSTALL_HOME/README.install." | tee -a $LOG
-
- echo "" | tee -a $LOG
- echo "Restarting database..." | tee -a $LOG
- sqldba command=startup >> $LOG 2>&1
- #
- # If the variable ORACLE_VERIFY is set, run the tcp.verify script.
- #
- if [ "$ORACLE_VERIFY" = "T" ] ; then
- $ORACLE_HOME/tcp/install/tcp.verify
- fi
- ;;
- *) echo ""
- echo "To complete SQL*Net installation you will need to:"
- echo " 1- shutdown the database."
- echo " 2- cd $ORACLE_HOME/install."
- echo " 3- make -f link.mk net."
- echo " 4- bring up the database."
- echo ""
- echo "The above procedure will relink all ORACLE executables"
- echo "with all the installed network drivers linked in."
- echo ""
- ;;
- esac
- fi
-
- # Make sure that generated files are owned by ORACLE account.
- if [ "$SUPER_USER" = "TRUE" ] ; then
- $CHOWN $ORACLE_OWNER $ORACLE_HOME/bin/* >> /dev/null 2>&1
- $CHOWN $ORACLE_OWNER $ORACLE_HOME/*/lib/* >> /dev/null 2>&1
- fi
-
- echo "
- The ORACLE installation program is now finished. Please refer
- to your ORACLE Installation and User's Guide for further instructions.
-
- Done."
- sync;sync;sync
- exit 0
-