#!/bin/sh # # # Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved. # # NAME # acfshanfs - front end for the Perl script that does the work. # # DESCRIPTION # Purpose # Verify NFSv4 Locking install/uninstall/supported. # # # NOTES # This wrapper program supports only Lunix/Unix platforms. # Use acfshanfs.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=acfshanfs TOOLS_DRIVER=${ORA_CRS_HOME}/lib/acfstoolsdriver.sh exec $TOOLS_DRIVER $CMDNAME $@ # Should never get here. exit -1