[Bug 8574] Missing option description for --exclude in man page

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8574 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 8566] Spotlight comments (extended attributes) are not synced

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8566 Wayne Davison changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #3 from Wayne Davison

[Bug 8508] out of memory in glob_expand_module

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8508 Wayne Davison changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Bug 8036] rsync should refuse -B values larger than the maximum block size

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8036 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Version|3.0.7

[Bug 7965] --max-size=0 is invalid (should transfer 0-byte files)

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7965 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 7124] Error exit causes I/O error

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7124 Wayne Davison changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #1 from Wayne Davison

[Bug 6927] Add a --fat option to ignore 1-second time diffs, ownership, hard links, symlinks, etc.

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=6927 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 6916] Avoid bundling a modified zlib

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=6916 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 5795] look into a improved tear-down processing during fatal errors

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=5795 Wayne Davison changed: What|Removed |Added Status|ASSIGNED|RESOLVED Version|3.0.4

[Bug 7959] erro occoure ! rsync can't auto exit

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7959 Wayne Davison changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Michael_google gmail_Gersten
> You want --exclude-from=file > You can cut-and-paste those path patterns into that file just as they are. Sadly, I'm still getting the files on the destination. Any ideas? 3.0.7 on windows, 3.0.8 on mac. -- Political and economic blog of a strict constitutionalist http://StrictConstitution.Blo

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The two most common problems with excludes are: 1. Excluded paths are relative to the source path. So if you are rsyncing /home/username and you want to exclude /home/username/Trash the path to exclude is actually /Trash. 2. Mistaking the fact that

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Michael_google gmail_Gersten
> 2. Mistaking the fact that the files are in the target because they > were already in the target for rsync actually transferring them.  If > they were there before you ran rsync they will still be there after > unless you use --delete-excluded Whoops! I thought that was the default. Thank you.

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Phil Dobbin
On Sat, 2011-12-24 at 18:26 -0500, Kevin Korb wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > The two most common problems with excludes are: > > 1. Excluded paths are relative to the source path. So if you are > rsyncing /home/username and you want to exclude /home/username/Trash >

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - --exclude Movies/ --exclude Music/ Or put them in a text file list and use --exlcude-from On 12/24/11 20:16, Phil Dobbin wrote: > On Sat, 2011-12-24 at 18:26 -0500, Kevin Korb wrote: >> -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 >> >> The two m

Re: Beginner help: Excluding directories by pattern

2011-12-24 Thread Phil Dobbin
On Sat, 2011-12-24 at 20:20 -0500, Kevin Korb wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > - --exclude Movies/ --exclude Music/ > > Or put them in a text file list and use --exlcude-from Many thanks. Happy holidays... Cheers, Phil. -- Please use reply-all for most replies

--compare-dest apparently incompatible with --checksum or --size-only

2011-12-24 Thread Jesse Molina
I am working with rsync on Debian, package version 3.0.9-1. I am trying to use rsync --compare-dest to make a delta-copy of a directory. In my case, the mtimes are all unreliable. The data is the same, but the times are all messed up and always will be. I am trying to use --compare-dest w

Re: --compare-dest apparently incompatible with --checksum or --size-only

2011-12-24 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If you use -a then rsync will fix the time stamps if they are different. Therefore rsync will have to copy them to fix the time stamps. If you don't care about timestamps then don't tell rsync to sync them. Your source and target are both local path

Re: --compare-dest apparently incompatible with --checksum or --size-only

2011-12-24 Thread Jesse Molina
Thanks for your reply. Just to be clear, when I said "delta-copy", I did not mean rsync's per-file delta to speed up remote transfers. I meant that I am basically making an incremental backup of the directories in question. I have a base-install dir (fresh set of files), a modified-install

Re: --compare-dest apparently incompatible with --checksum or --size-only

2011-12-24 Thread Jesse Molina
Indeed! The -a implication of -t was causing the problem... though I am struggling to think of any case where the use of -t would be desirable when --compare-dest is used. Perhaps it should be simply negated with a warning message? At the very least, I hope this mail will serve as a warnin