#!/bin/sh # # # afdload # # Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved. # # NAME # afdload - front end for the Perl script that does the work. # # DESCRIPTION # Purpose # load or unload AFD drivers. # # NOTES # This wrapper program now supports only Lunix/Unix platforms. # Use afdload.bat for Windows platforms. # # ############################################################################# ORA_CRS_HOME=/ade/aime_adc01hxr/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=afdload TOOLS_DRIVER=${ORACLE_HOME}/lib/afdtoolsdriver.sh exec $TOOLS_DRIVER $CMDNAME $@ # Should never get here. exit -1