|
From: Leif M. <le...@ta...> - 2007-02-14 22:32:38
|
Karthik and all, Last week, I updated the shell script to fix this problem. It will be in the next release, but in the mean time, You can download this latest sh script here: http://wrapper.svn.sourceforge.net/viewvc/*checkout*/wrapper/trunk/wrapper/src/bin/sh.script.in Please give it a try and let me know if you have any problems. Cheers, Leif Karthik Raajkumar wrote: > > 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 > |