--- Jose Carlos Garcia Pastor
<[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I need to run an script file as a daemon, and keep
> resulting process alive
> when ant tasks execution finishes.
> I've tried 
>               <parallel>
>                       <daemons>
>                               <exec dir="/jboss/bin"
> executable="/jboss/bin/start.sh"/>
>                       </daemons>
>               </parallel>
> 
> but it didn't work.
> 

This is a question for the user list
[EMAIL PROTECTED]

However...

If you want to run something as a daemon, you do not
want it to stay alive.  A daemon is something that
explicitly does not live beyond the JVM's exit.  You
need a plain <exec spawn="true" ... />.

-Matt

__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to