Dynamic address problem

2002-04-23 Thread Matthew Simpson
Hi All, We have clients which dynamic IPs which we have setup with .dyndns.org addresses. We have added these to the rsync.conf 'hosts allow=" but they are being denied access.. Is there anyway around this? Matt -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/

Re: rsync hanging (Sun -> AIX)

2002-04-23 Thread Martin Pool
On 24 Apr 2002, [EMAIL PROTECTED] wrote: What about trying rsync daemon mode? That's no less secure than remsh as far as I know, and if the bug is in remsh it might save you. Please look through the rsync archive at mail-archive.com for a discussion of the use of netstat in tracing rsync hangs

rsync hanging (Sun -> AIX)

2002-04-23 Thread neil . pawson
I'm trying to rync working between the UK (Sun box) and India (AIX box) and am having a real problems getting it up and running because every time I do a full transfer it hangs. The Sun box is the one holding the canonical source which we want to mirror. I've been shipped to the India office to

Irix 5.3 Rsync Binary?

2002-04-23 Thread Daniel . Dekok
Hi All As the topic alludes to, I'm looking for a copy of Rsync that will run on and Irix 5.3 based system. If anyone knows of where to find one, or has one they can offer, or in the worse case is crazy enough to offer to build one, that would be most Appreciated. Daniel Daniel Dekok Unix

Re: Rsync 2.5.5 Error Tags

2002-04-23 Thread Martin Pool
On 23 Apr 2002, Greg Brissey <[EMAIL PROTECTED]> wrote: > 42776 100% 13.60MB/s0:00:00 > mkstemp failed: File name too long > 13556 100% 12.93MB/s0:00:00 > mkstemp failed: File name too long As Tim said, you should use -v to get to see the filenames. I've only seen this

Re: Rsync 2.5.5 Error Tags

2002-04-23 Thread tim . conway
#1 the source has a symlink where the destination has a dir. adding --force will tell rsync to rip out the dir and replace it with a symlink, assuming that's what you want done. #2 this space intentionally left blank, as I have no idea. #3 that invocation appears to have "--progress" but no "

Re: no output from perl script

2002-04-23 Thread tim . conway
The filehandle trick is a fine way to do it, but I want to point out that some of the output comes on STDERR, so you might want to add a "2>&1" just before the pipe in your open(). that is, of course if you want that info... stuff like: opendir(test/license.management/logsnap): Permission d

Re: rsync and missing files?

2002-04-23 Thread Jos Backus
On Tue, Apr 23, 2002 at 01:18:30PM -0500, John Madden wrote: > >> Well, since this was the only response, are we looking at the > >> possibility of this being the default behavior? > > > > I don't think it would be a good idea to have qmail-specific locking in > > rsync. > > Agreed - and I don't

Re: rsync and missing files?

2002-04-23 Thread John Madden
>> Well, since this was the only response, are we looking at the >> possibility of this being the default behavior? > > I don't think it would be a good idea to have qmail-specific locking in > rsync. Agreed - and I don't run qmail anyway (courier), but I thought he meant "some form of locking."

Rsync 2.5.5 Error Tags

2002-04-23 Thread Greg Brissey
I've gotten several different errors with rsync. Maybe someone can help me. 1. rsync -azSH --stats --delete-after /export/home remote:/export/home/bkup delete_file: rmdir(home/greg/vnmrsys) : File exists rsync: symlink "home/greg/vnmrsys" -> "/export/home/vnmrsys": File exists unexpected tag 91

Re: rsync and missing files?

2002-04-23 Thread Martin Pool
On 23 Apr 2002, John Madden <[EMAIL PROTECTED]> wrote: > >> send_files failed to open //home/user/Maildir/new/_dwG.NeZv8.blah: No > >> such file or directory > >> rsync error: partial transfer (code 23) at main.c(578) > > > > This looks slightly problematic. While Maildir delivery guarantees that

Re: symlinks?

2002-04-23 Thread Dan Stromberg
--force appears to take care of this. On Mon, Apr 22, 2002 at 06:23:08PM -0700, Dan Stromberg wrote: > I'm trying to switch to using rsync for updating a huge software library > containing binaries, text files, symlinks, and so on. We've been using > something homegrown which I'm not that happy

Re: rsync and missing files?

2002-04-23 Thread John Madden
>> send_files failed to open //home/user/Maildir/new/_dwG.NeZv8.blah: No >> such file or directory >> rsync error: partial transfer (code 23) at main.c(578) > > This looks slightly problematic. While Maildir delivery guarantees that > files in new/ will always be complete/present, no such guarante

Re: rsync 2.5.5 --delete-after option bug

2002-04-23 Thread Corey Stup
> The option --delete-after does not seem to work. > > In a command such as > > rysnc -avzSH --progress --stats --delete-after remote::XYZ/dirX /export/home > files removed from the source are not removed at the destination. > However subsituting --delete for --delete-after does cause

rsync 2.5.5 --delete-after option bug

2002-04-23 Thread Greg Brissey
FYI, The option --delete-after does not seem to work. In a command such as rysnc -avzSH --progress --stats --delete-after remote::XYZ/dirX /export/home files removed from the source are not removed at the destination. However subsituting --delete for --delete-after does cause the fil

Re: Rsync server on w2k with ssh

2002-04-23 Thread Lapo Luchini
> > >I am running rsync as a service on w2k successfully >using the patch from http://v.iki.fi/~vherva/cygwin-rsync/ > > Why using a patched 2.4.2 when you have an official 2.5.5 build ready for you? =) You can also install it directly frmo the cygwin's setup ( http://cygwin.com/setup.exe ) -

Rsync server on w2k with ssh

2002-04-23 Thread mgb
Help ! I am running rsync as a service on w2k successfully using the patch from http://v.iki.fi/~vherva/cygwin-rsync/ I would like to connect to the windows machine from Linux, to automatically backup the windows machine without user intervention. I understand that there are network problems us

Re: patch: timeout problem solved

2002-04-23 Thread Martin Pool
That looks good, though I have not studied it closely yet. -- Martin -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

patch: timeout problem solved

2002-04-23 Thread Stefan Nehlsen
hi, I made some changes to generator.c : - reading data, calculating checksums and sending it to the sender now happens in one loop. - the code has become shorter - it uses less memory - 2 malloc's less that may fail - the line will be used all the time - it should be a bit faster