Re: Always exitcode 256 under Cygwin with rsync 2.6.4

2005-04-04 Thread Paul Haas
running. -- Paul Haas [EMAIL PROTECTED] -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Ownership

2004-09-09 Thread Paul Haas
On Wed, 8 Sep 2004, Wayne Davison wrote: On Wed, Sep 08, 2004 at 04:52:51PM -0400, Paul Haas wrote: I can think of 4 usefull modes: 1The default, don't try to chown(). 2 --ownerIf rsync thinks it is root, then try to chown() 3 --owner-whiningAlways try to chown

Re: rsync crashing Redhat RHEL3.0 server

2004-08-31 Thread Paul Haas
On Tue, 31 Aug 2004, Paul Slootman wrote: Sounds like you're running out of memory (and swap as well). I'd suggest adding memory (adding more swap doesn't make it faster...) Adding swap space lets you figure out how much memory to buy, or ... or rsyncing smaller bits at a time if possible how much

Re: Bug reporting

2004-06-01 Thread Paul Haas
On Tue, 1 Jun 2004, John wrote: That may be so, but I don't think this is one of them. rsyncx is bound to have all rsync's bugs. Qute possibly some will be fixed first there, and it may be they will add valuable new features. One that I think would be nice is an automatic retry: I keep

Re: Feature Request - Load Throttling

2004-02-18 Thread Paul Haas
needs to be changed at all, provided you avoid anything involving timeouts. There are certainly situations where rsync would be the important task, and it would be the other disk hog process that should pause. It's debatable whether I count as a real developer. -- Paul Haas [EMAIL PROTECTED

Re: Server crashed using rsync

2004-01-28 Thread Paul Haas
the files are structured make very difficult to create several backup with less files. Is there any one else facing issues like this ? Is there any workaround on this ? Thank you, Eugen Luca -- Paul Haas [EMAIL PROTECTED] -- To unsubscribe or change options: http://lists.samba.org/mailman

Re: rsync security advisory

2003-12-04 Thread Paul Haas
() +void log_close(void) which fixes the two places in 2.5.5-0.1 where there are empty parameter lists in a function prototype. -- Paul Haas [EMAIL PROTECTED] -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: rsync in-place (was Re: rsync 1tb+ each day)

2003-02-05 Thread Paul Haas
-dangerous and --inplace-more-dangerous or a modifier option. In many cases, writing the documentation, is more work than writing the code. -- Paul Haas [EMAIL PROTECTED] -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org

Re: rsync problem behind a router

2002-12-18 Thread Paul Haas
On Tue, 17 Dec 2002, Chad Moss wrote: I have used rsync on many systems, and never had a problem. I am stumped on what to do with this. I have a box behind a LinkSys router and I can not push or pull data to or from it from anywhere. Does it work for very small transfers? Does it work with

Re: rsync 2.5.5 segmentation fault on Linux x86.

2002-10-01 Thread Paul Haas
On 1 Oct 2002, Erik Enge wrote: Hi all. I have a script which I call from cron. It basically does some stopping of a few services, rsyncs all files to a remote server and then starts the services again. However, rsync segfaults: /share/bin/cron.root.backup.sh: line 28: 18453

Re: rsync 2.5.5, HPUX, getting unexplained error at main.c(578)

2002-05-30 Thread Paul Haas
WIFSIGNALED(), WIFSTOPPED() and WIFCONTINUED() and do something appropriate. If you reach the perror(), hopefully the text there will offer some clues. I don't have an HP-UX 11.11 system, I'm looking at the manpages on an HP-UX 11.00 system. -- Paul Haas Just because I sometimes use HP-UX

Re: rsync 2.5.5, HPUX, getting unexplained error at main.c(578)

2002-05-30 Thread Paul Haas
, attach to the process with gdb, vdb, wdb, dde or some other debugger. My HP-UX system doesn't have a signal 64, either. On Thu, 30 May 2002, Charles F. Fisher wrote: On Thu, May 30, 2002 at 11:53:34AM -0400, Paul Haas wrote: Much stuff snipped.. The EINTR case doesn't make sense

Re: [PATCH] rsync kills all user processes on fork failure

2002-05-09 Thread Paul Haas
On Thu, 9 May 2002, Dave Dykstra wrote: On Wed, May 08, 2002 at 09:44:25PM -0700, Jos Backus wrote: On Wed, May 08, 2002 at 11:31:18PM -0400, Bob Byrnes wrote: http://rsync.samba.org/cgi-bin/rsync/incoming?id=2762;user=guest;selectid=2762 Fwiw, the patch looks good to me. rsync doesn't

Re: rsync io

2002-03-21 Thread Paul Haas
, so I don't know the details. -- Paul Haas [EMAIL PROTECTED] -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.tuxedo.org/~esr/faqs/smart-questions.html

Re: Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc

2002-03-21 Thread Paul Haas
On Thu, 21 Mar 2002, Eckert, Robert D wrote: Greetings, here is the output of the 'configure' step and the compile step (using the Compaq cc compiler that comes with Tru64 V5.1A. The configure reported success and most of the compile steps cam through error/warning free except for the one

[PATCH] rsync kills all user processes on fork failure

2002-03-19 Thread Paul Haas
revision 1.1 diff -u -r1.1 util.c --- util.c 2002/03/19 15:01:28 1.1 +++ util.c 2002/03/19 15:29:32 @@ -483,7 +483,7 @@ { pid_t newpid = fork(); - if (newpid) { + if (newpid 0) { all_pids[num_pids++] = newpid; } return newpid; -- Paul