Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 40ef41abfd9a882edc10fcc1c50eae61 > files > 1

gexec-0.3.6-7mdv2009.0.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 $@
~