Sophie

Sophie

distrib > Mandriva > 10.2 > x86_64 > by-pkgid > 3b7d6f37da07f25f0003c9bf5d76eb5c > files > 8

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

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

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

if [ -f $PROFILE ]; then
source $PROFILE
fi

exec $MPUT_PATH/mput_wrap $@