RE: sshexec (running remote commands with sudo) forced psuedo-tty allocation

2008-07-23 Thread mindspin311
Still not being able to. I might be doing this wrong though... I have a build script: /usr/local/bin/test is: #!/bin/sh /usr/local/bin/antRunAsync /usr/local/bin/RestartApache I modified antRunAsync by setting nohup to true and setting an output file. (I also tried w/o nohup) I'v

Enforce order in copying so that my overiding works correctly

2008-07-23 Thread Raja Nagendra Kumar
Hi I am looking for files to copied to same directory from different locations as specified by fileset and its includes as below.

RE: How to run an ant target on success/failed build

2008-07-23 Thread p2008
For anyone else who is interested in this presentation, the problem addresses in this thread starts on Slide 34, so jump ahead! http://people.apache.org/~kevj/ossummit/extending-ant.html Rebhan, Gilbert wrote: > > > > -Original Message- > From: p2008 [mailto:[EMAIL PROTECTED] > S

Still not able to unsubscribe

2008-07-23 Thread Anderson, Rob (Global Trade)
Can the email list admin please help? I have tried to unsubscribe by sending email to [EMAIL PROTECTED] and [EMAIL PROTECTED] I have also tried [EMAIL PROTECTED] and [EMAIL PROTECTED] None of my attempts to unsubscribe have worked. Please unsubscribe me from both the user and dev list.

Re: AW: How to run an ant target on success/failed build

2008-07-23 Thread p2008
Interesting, I didn't know you could do that. However I want to add some custom messages and maybe some extra logic - not just mailing the logs. I think Cruise Control is a good solution to manage the email notifications. I am going to be using it anyways for automated builds. Knuplesch, Ju

RE: sshexec (running remote commands with sudo) forced psuedo-tty allocation

2008-07-23 Thread Barry Pape
I'm using it in a less direct way. My ant script executes a shell file on a remote host using ssh. The shell file in turn executes a run script (shell file) using the antRunAsync wrapper. So I have... Build script: The command in the shell script: ./antRunAsync.sh ./run.

RE: How to run an ant target on success/failed build

2008-07-23 Thread p2008
Thanks for this info! It seems the exec listener is the most flexible solution. Not quite as simple as the hooks offered in nant, but it should do the job. Thanks. Rebhan, Gilbert wrote: > > > > -Original Message- > From: p2008 [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 23

RE: How to run an ant target on success/failed build

2008-07-23 Thread Rebhan, Gilbert
-Original Message- From: p2008 [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2008 12:35 AM To: user@ant.apache.org Subject: How to run an ant target on success/failed build /* I need to be able to trigger running a specific ant target when the build succeeds, and another one when