Re: High volume problem: stat: no such file or directory

2006-01-20 Thread Paul Slootman
On Thu 19 Jan 2006, Bob Robison wrote: I'm running rysnc version 2.5.7. Client-machines are linux (2.6.12 That's pretty ancient; I don't think anyone can/wants to help before you try it with the latest (2.6.6). You've upgraded the kernel, so upgrading rsync shouldn't be a problem :) Paul

Re: High volume problem: stat: no such file or directory

2006-01-20 Thread Bob Robison
I am open to trying the latest version, and will do so as soon as I can again get access to that machine. I was hoping to keep the OS install standard (AS3 Upgrade 5). I believe I did try the rsync from AS4 (which is 2.6.3) and it had the same problem. I also read through the change logs and

DO NOT REPLY [Bug 3430] New: Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 Summary: Error with ACL-patch and -x on mountpoint Product: rsync Version: 2.6.6 Platform: Other OS/Version: FreeBSD Status: NEW Severity: minor Priority: P3

deleting remote dirs I no longer want to backup

2006-01-20 Thread Christophe LYON
Hi all, I have been using rsync to copy multiple dirs, eg: rsync -aR dira dirb /tmp Now, I no longer want to copy dirb, and I want it to be removed on the remote side, and I cannot figure how to achieve this. I tried: rsync -aR --exclude=dirb --exclude-deleted dira dirb /tmp but this has

Re: High volume problem: stat: no such file or directory

2006-01-20 Thread Wayne Davison
On Thu, Jan 19, 2006 at 04:26:32PM -0600, Bob Robison wrote: The server-side error messages occasionally report the problem referenced in the subject stat: no such file or directory. Older rsync versions would first move the file into place, and then chmod() the file to the right permissions.

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 --- Comment #1 from [EMAIL PROTECTED] 2006-01-20 10:06 MST --- The issue is that, when rsync detects that a directory is on another filesystem, it sends the directory itself but skips the contents. See send_directory in flist.c: it

Re: deleting remote dirs I no longer want to backup

2006-01-20 Thread Wayne Davison
On Fri, Jan 20, 2006 at 03:33:06PM +0100, Christophe LYON wrote: rsync -avn --exclude=dirb --delete-excluded test-rsync/ /tmp but in this particular case, it tries to remove many things in /tmp which is obviously populated with many files ;-) That command tells rsync to make the /tmp dir

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #2 from

DO NOT REPLY [Bug 3362] Add option to normalize Unicode filenames

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3362 [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

DO NOT REPLY [Bug 2790] Add support for converting filenames into different encodings

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=2790 [EMAIL PROTECTED] changed: What|Removed |Added CC||[EMAIL PROTECTED] --- Comment

Re: deleting remote dirs I no longer want to backup

2006-01-20 Thread Christophe LYON
There are several solutions, and which one is right for you depends on how new your rsync version is. For instance, a way that works with any rsync version is to copy from an empty dir to get rsync to do a deletion: mkdir empty-directory rsync -av --delete --include=/dirb --exclude='*'

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 --- Comment #3 from [EMAIL PROTECTED] 2006-01-20 11:57 MST --- (In reply to comment #2) No, we copy the mount-point directory on purpose because we want it to be there should the remote system need to mount their own filesystem at

Re: deleting remote dirs I no longer want to backup

2006-01-20 Thread Wayne Davison
On Fri, Jan 20, 2006 at 07:30:00PM +0100, Christophe LYON wrote: My original command was: rsync -aR --exclude=dirb --exclude-deleted dira dirb /tmp I assumed the -R was unneeded because dira and dirb have no path information. If that info was elided, then things may become much more

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 --- Comment #4 from [EMAIL PROTECTED] 2006-01-20 13:02 MST --- I know of no way to find the attributes of the underlying mount-point directory when the mount is present. And leaving out the mount-point dir is not an improvement in my

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 --- Comment #5 from [EMAIL PROTECTED] 2006-01-20 13:43 MST --- (In reply to comment #4) We could make this user-selectable by letting the user repeat the -x option to choose to eliminate the mount-point dirs from the transfer. In

DO NOT REPLY [Bug 3430] Error with ACL-patch and -x on mountpoint

2006-01-20 Thread bugzilla-daemon
https://bugzilla.samba.org/show_bug.cgi?id=3430 --- Comment #6 from [EMAIL PROTECTED] 2006-01-20 15:03 MST --- Created an attachment (id=1704) -- (https://bugzilla.samba.org/attachment.cgi?id=1704action=view) Makes -x -x exclude mount points themselves This patch should do it.

problem with rsyncing web site

2006-01-20 Thread Walls, Bryan (MSFC-IS04) ef
I'm currently running a web site on Windows 2000 (ISS5), and I need to mirror the content to a Unix server running Apache. I've installed Cygwin, and I have rsync working to copy content over ssh. However, content is being copied with permissions being supplied for the user, but being zeroed

Re: problem with rsyncing web site

2006-01-20 Thread Wayne Davison
On Fri, Jan 20, 2006 at 07:36:22PM -0600, Walls, Bryan (MSFC-IS04) ef wrote: Is there a way to force rsync to take permissions from the enclosing folder? Or something? One solution is to grab a nightly snapshot tar file of rsync because I've added the --chmod=TWEAKS option that will allow you

Re: problem with rsyncing web site

2006-01-20 Thread Eberhard Moenkeberg
Hi, On Fri, 20 Jan 2006, Wayne Davison wrote: On Fri, Jan 20, 2006 at 07:36:22PM -0600, Walls, Bryan (MSFC-IS04) ef wrote: Is there a way to force rsync to take permissions from the enclosing folder? Or something? One solution is to grab a nightly snapshot tar file of rsync because I've

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 18:49:38 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv11339 Modified Files: generator.c log.c Log Message: Handle the extra output needed when log_format_has_i 1. Revisions: generator.c 1.238 = 1.239

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 18:52:52 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv15317 Modified Files: rsync.yo rsync.1 Log Message: Document the behavior of -ii. Revisions: rsync.yo1.318 = 1.319

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 19:33:24 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv21599 Modified Files: NEWS Log Message: Mentioned the addition of -ii. Revisions: NEWS1.344 = 1.345

CVS update: rsync/patches

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 20:15:03 2006 Author: wayned Update of /data/cvs/rsync/patches In directory dp.samba.org:/tmp/cvs-serv27126 Modified Files: ignore-case.diff Log Message: Made this actually work again. Revisions: ignore-case.diff1.45 = 1.46

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 21:21:43 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv21377 Modified Files: flist.c Log Message: - Changed send_file_entry() into a static function again. - Made send_file_entry() derive the base_flag value from *file. - Added

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Fri Jan 20 21:21:36 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv21335 Modified Files: backup.c generator.c Log Message: Call make_file() with one more arg (the base flags). Revisions: backup.c1.48 = 1.49

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Sat Jan 21 00:36:15 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv22123 Modified Files: options.c Log Message: Allow the -x option to be repeated. Revisions: options.c 1.298 = 1.299

CVS update: rsync

2006-01-20 Thread Wayne Davison
Date: Sat Jan 21 07:53:40 2006 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/tmp/cvs-serv26810 Modified Files: options.c Log Message: We don't ever need to send the chmod option to the remote rsync. Revisions: options.c 1.299 = 1.300