On Wed, 2008-03-19 at 10:11 -0700, rdwyer wrote:
> Rsync seems to intermittently ignore the exclude statement and copies them
> from time to time.

> rsync -avz --delete --update --stats
> --exclude=/library/webserver/documents/domains/mydomain/file_to_exclude.html
> -e ssh [EMAIL PROTECTED]:/Web_Files/Domains/source_of_files/
> /library/webserver/documents/domains/destination_dir_of_files/

Probably you've just written the exclude rule incorrectly.  Rsync
matches an exclude pattern with a leading slash against source files'
file-list paths, which are relative to the source directory.  Thus, your
exclude rule is excluding a file:

[EMAIL 
PROTECTED]:/Web_Files/Domains/source_of_files/library/webserver/documents/domains/mydomain/file_to_exclude.html

(if it exists), which would otherwise be copied to:

/library/webserver/documents/domains/destination_dir_of_files/library/webserver/documents/domains/mydomain/file_to_exclude.html

Maybe you meant something more like --exclude=/file_to_exclude.html ,
which would stop:

[EMAIL PROTECTED]:/Web_Files/Domains/source_of_files/file_to_exclude.html

from being copied to:

/library/webserver/documents/domains/destination_dir_of_files/file_to_exclude.html

Matt

-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Reply via email to