
Installgen
Features and Benefits
Installgen
Demo Available for download...

#
# The profile that all logins get before using their own .profile.
# script: /etc/profile (for standby database)
# Features: Sets important environment variables for PATH, ORACLE_HOME etc.
# on the standby database server.
#
# Script Sequence#: 73
# Copyright 2002 by .com Solutions Inc.
#
# ---------------------- Revision History ---------------
# Date By Changes
# 11-20-2001 dsimpson Initial Release
# 04-30-2002 dsimpson Added NLS_LANG env var.
# This output file was created by Installgen version 1.38 on Sun Nov 10 14:51:56 2002. By .com Solutions Inc. www.dotcomsolutionsinc.net
trap "" 2 3
MANPATH=/usr/man:/usr/share/man:/usr/local/man:/opt/man
PATH=/usr/sbin/:/bin:/usr/bin:/usr/ccs/bin:/usr/ucb/bin:/usr/ucb:/usr/openwin/bin:/usr/dt/bin:/usr/local/bin:/opt/bin:/usr/opt/SUNWmd/sbin:/usr/platform/sun4u/sbin:/opt/sfw/bin:.:/usr/local/sbin
DISPLAY=":0"
EDITOR=vi
ORACLE_HOME=/u01/v901
PATH=$PATH:$ORACLE_HOME/bin
ORACLE_BASE=/u01/v901
ORACLE_SID=prod1s
CLASSPATH=$ORACLE_HOME/jdbc/lib/classes111.zip
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib64:/usr/dt/lib
ORACLE_OWNER=oracle
ORACLE_TERM=386s
ORAENV_ASK=NO
TNS_ADMIN=$ORACLE_HOME/network/admin
TERM=vt100
NLS_LANG=AMERICAN_AMERICA.US7ASCII
export MANPATH TNS_ADMIN LOGNAME PATH DISPLAY ORACLE_HOME ORACLE_SID CLASSPATH LD_LIBRARY_PATH ORA_OWNER ORACLE_TERM ORACLE_OWNER ORAENV_ASK EDITOR TERM
if [ "$TERM" = "" ]
then
if /bin/i386
then
TERM=AT386
else
TERM=sun
fi
export TERM
fi
# Login and -su shells get /etc/profile services.
# -rsh is given its environment in its .profile.
case "$0" in
-sh | -ksh | -jsh)
if [ ! -f .hushlogin ]
then
/usr/sbin/quota
# Allow the user to break the Message-Of-The-Day only.
trap "trap '' 2" 2
/bin/cat -s /etc/motd
trap "" 2
/bin/mail -E
case $? in
0)
echo "You have new mail."
;;
2)
echo "You have mail."
;;
esac
fi
esac
umask 002
trap 2 3
stty erase '^H'

