#!/bin/sh # # # acfsreplcrs # # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # NAME # acfsreplcrs - front end for the Perl script that does the work. # # DESCRIPTION # Purpose # Runs the CRS action scripts based on CRS callouts. # # NOTES # # # # NOTES # This wrapper program supports only Linux/Unix platforms. # ############################################################################# ORA_CRS_HOME=/ade/aime_adc00jzc/oracle if [ ! -d $ORA_CRS_HOME ]; then ORA_CRS_HOME=$ORACLE_HOME fi ORACLE_HOME=$ORA_CRS_HOME export ORA_CRS_HOME ORACLE_HOME CMDNAME=acfsreplcrs TOOLS_DRIVER=${ORACLE_HOME}/lib/acfstoolsdriver.sh exec $TOOLS_DRIVER $CMDNAME $@ # Should never get here. exit -1