#! /bin/sh
#
#	This small script is used to fix the uid of wrap..exec.
#	It must be run as root.
#

if [ ! `whoami` = "root" ]; then
 echo
 echo Please su to root before running this script!
 echo
 echo
 exit
fi

cd `dirname $0`
cd ../public_html/bin
if [ ! -f wrap..exec ]; then exit; fi
chown nobody:nobody wrap..exec
chmod a+s wrap..exec



