#!/bin/sh # # # usm_singlefs_mount # # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # NAME # usm_singlefs_mount - front end for the Perl script that does the work. # # DESCRIPTION # Purpose # Mount or unmount a USM based Oracle DB Home. # # # NOTES # This wrapper program now supports only Lunix/Unix platforms. # Use usm_singlefs_mount.bat for Windows 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=acfssinglefsmount TOOLS_DRIVER=${ORACLE_HOME}/lib/acfstoolsdriver.sh exec $TOOLS_DRIVER $CMDNAME $@ # Should never get here. exit -1