df8450cf20
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14421 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
21 lines
520 B
Bash
Executable File
21 lines
520 B
Bash
Executable File
#!/bin/ksh
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
#(C)IBM Corp
|
|
#
|
|
|
|
. $XCATROOT/lib/functions
|
|
|
|
RESNAME=$(whatismyres2 $NODE)
|
|
|
|
NFS=$(tabdb $NODERESTAB $RESNAME $noderes_nfs_install)
|
|
POSTDIR=post
|
|
POST_DIR=$(tabdb $NODERESTAB $RESNAME $noderes_install_dir)/$POSTDIR
|
|
|
|
logger -t xcat -p local4.info "Install: mounting /post"
|
|
mkdir /post 2>&1 | logger -t xcat -p local4.info
|
|
result=`mount -r -o nolock $NFS:$POST_DIR /post 2>&1`
|
|
RETURNCODE=$?
|
|
logger -t xcat -p local4.info $result
|
|
exit $RETURNCODE
|
|
|