Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 90a75624aa789798422af861d314c531 > files > 11

ka-run-2.0-28mdk.src.rpm

#!/bin/bash
# Wrapper for calling rshp with the right environement
# It loads the /etc/profile.d/cluster.sh for getting the right
# environnement before calling the real rshp

PROFILE=/etc/profile.d/cluster.sh
RSHP_PATH=/usr/bin

if [ -f $PROFILE ]; then 
	source $PROFILE; 
fi
exec $RSHP_PATH/rshp_wrap $@