RE: rsync

2005-12-22 Thread Srikrishna_Parthasarathy
, 2005 4:07 PM To: Ant Users List Subject: RE: rsync You can setup cygwin on the win system -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 11:19 AM To: user@ant.apache.org Subject: RE: rsync I have only private and public key . I

RE: rsync

2005-12-22 Thread Marcus Zafarano
You can setup cygwin on the win system -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 11:19 AM To: user@ant.apache.org Subject: RE: rsync I have only private and public key . I don't have Certificate files. More we are using

RE: rsync

2005-12-22 Thread Srikrishna_Parthasarathy
to be able to access the system without having to type in the password each time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 10:48 AM To: user@ant.apache.org Subject: RE: rsync Can you share your properties file and explain on

RE: rsync

2005-12-22 Thread Marcus Zafarano
to access the system without having to type in the password each time. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 10:48 AM To: user@ant.apache.org Subject: RE: rsync Can you share your properties file and explain on what

RE: rsync

2005-12-22 Thread Marcus Zafarano
We use certificates and sudo, for user dssjava. -Original Message- From: Sommers, Elizabeth [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 10:48 AM To: 'Ant Users List' Subject: RE: rsync That is pretty close to what I have. How are you dealing with

RE: rsync

2005-12-22 Thread Srikrishna_Parthasarathy
Can you share your properties file and explain on what exactly this do ? Thanks srikrishna -Original Message- From: Marcus Zafarano [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 1:45 PM To: Ant Users List Subject: RE: rsync

RE: rsync

2005-12-22 Thread Sommers, Elizabeth
That is pretty close to what I have. How are you dealing with passwords? -Original Message- From: Marcus Zafarano [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 1:45 PM To: Ant Users List Subject: RE: rsync

RE: rsync

2005-12-22 Thread Anderson, Rob (Global Trade)
> To: Ant Users List > Subject: Re: rsync > > AFAIK there's no rsync task. > > It should be fairly easy to use though to just execute > the native application. Try checking the manual for the task. > > JEC > -- > Jeffrey E. Care ([EMAIL PROTECTED]) &g

RE: rsync

2005-12-22 Thread Marcus Zafarano
-Original Message- From: Sommers, Elizabeth [mailto:[EMAIL PROTECTED] Sent: Thursday, December 22, 2005 10:18 AM To: 'user@ant.apache.org' Subject: rsync Does anybody have an ant rsync task that I ca

Re: rsync

2005-12-22 Thread Jeffrey E Care
AFAIK there's no rsync task. It should be fairly easy to use though to just execute the native application. Try checking the manual for the task. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) "Sommers, Elizabeth" <[EMA

RE: rsync wildcard

2005-04-06 Thread Euan Guttridge
Thanks Daniel - works a treat: - Daniel wrote : Looks like Ant doesn't do the expansion that the shell does. This is OK - I don't think it is supposed to. You can use the "apply" task and specify the *.gz files as a fileset: - Daniel Euan Guttridge wrote: >Hi > >Can

RE: rsync wildcard

2005-04-06 Thread Matt Benson
--- Christoph Bugel <[EMAIL PROTECTED]> wrote: > IIRC you can also supply the args separately, > instead > of using line=. > s/can/should/ -Matt > > __ Do you Yahoo!? Yahoo! Personals - Better first dates. More second dates. http://person

Re: rsync wildcard

2005-04-06 Thread frode
If you want shell expansion, you could probably exec "sh" and use On Wed, Apr 06, 2005 at 15:42:21 +0300, Daniel Blaukopf wrote: > Looks like Ant doesn't do the expansion that the shell does. This is OK > - I don't think it is supposed to. You can use the "apply" task and > specify the *.gz file

Re: rsync wildcard

2005-04-06 Thread Daniel Blaukopf
Looks like Ant doesn't do the expansion that the shell does. This is OK - I don't think it is supposed to. You can use the "apply" task and specify the *.gz files as a fileset: - Daniel Euan Guttridge wrote: Hi Can anyone advise why the following works on the command line, but

RE: rsync wildcard

2005-04-06 Thread Christoph Bugel
> Can anyone advise why the following works on the command line, but not > within an ant script. The error is 'file/directory does not exist', when > it clearly does. If I change the *.gz to a specific file it works fine. > > > > > When you replace "rsync" with "echo" you will see that the quo