Sophie

Sophie

distrib > Mandriva > 2007.0 > x86_64 > by-pkgid > 896e9921645b4af4adc44a8871bda0cc > files > 1

gexec-0.3.6-1mdk.src.rpm

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

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

if [ -f $PROFILE ]; then
source $PROFILE
fi
exec $GEXEC_PATH/gexec_wrap $@
~