|
From: Karthik R. <ka...@ch...> - 2007-02-14 20:50:18
|
I was able to use the instructions given for Unix/Linux to get it working on Mac OS X - the simplest method was sufficient for my requirements. http://wrapper.tanukisoftware.org/doc/english/integrate-simple-nix.html You would have to make one change to the script to be able to stop/get status: - in the getpid() function change pidtest=`$PSEXE -p $pid -o args | grep "$WRAPPER_CMD" | tail -1` TO pidtest=`$PSEXE -p $pid | grep "$WRAPPER_CMD" | tail -1` - ps in Darwin does not support the 'args' keyword --karthik |