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

#! /bin/sh
# script: 3_sol_901_prepinstall_1.sh
# Features: This shell script sets the execute
# permissions on each of the shell scripts in the oracle user directory.
# Notes: 1) set this script to be executable before execution with the following command
# chmod u+x 3_sol_901_prepinstall_1.sh
# 2) The execute status of the removal script 41_sol_remove_oracle_1.sh
# is disabled for safety.
#
# Script Sequence#: 3
# Used By: run manually as the oracle UNIX user
# Copyright 2002 by .com Solutions Inc.
#
# ---------------------- Revision History ---------------
# Date By Changes
# 9-25-2001 dsimpson Initial Release
# 9-28-2001 dsimpson Added setting execute permission for Perl scripts
# 9-26-2002 dsimpson Added variable path to chmod for Mac OS X
# 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
# define globally used paths/variables
ORACLE_OWNER=oracle
ORACLE_OWNER_PATH=/export/oracle
ORACLE_GROUP=dba
ORACLE_HOME=/u01/v901
ORACLE_SID=prod1
# set execute permissions for all shell and perl scripts to allow execution by oracle user
/bin/chmod u+x $ORACLE_OWNER_PATH/*.sh
/bin/chmod u+x $ORACLE_OWNER_PATH/*.pl
# remove execute permission for the remove script
/bin/chmod -x $ORACLE_OWNER_PATH/41_sol_remove_oracle_1.sh

