Re: Replacing rsync on OSX servers.

2011-11-22 Thread Warren Oates
Bryan:

I successfully compile rsync under OS X, placing the binary in
/usr/local/bin and the man pages in /usr/local/man.

I rewrote my $PATH and $MANPATH to look in those places first (in
~/.bashrc). That way, when I type "rsync" at the prompt, it finds the
one in /usr/local/bin and stops looking (and the same for "man
rsync"). THis way, Apple can upgrade anything they want -- I don't use
their version anyway.

I do the same sort of thing with ffmpeg.

W.


On Tue, Nov 22, 2011 at 5:31 PM, Bryan Pliatsios
 wrote:
> Thank you both for your replies,
>    nothing unexpected in the comments, but I'm certainly glad there were no
> bombshells telling me a painful path lay ahead.
>    We're having an internal discussion about replacing rsync in place vs
> using /usr/local/bin. We have a very small team with a lot of servers so a
> standard environment is essential, so more investigation is going into
> finding out if the stock rsync is used by any OSX processes (we think not)
> and at least adding an motd and perhaps a version query into our scripts
> given the conflicting use of -E between Apple's patch and rsync3+.
>    Finally, having built it now, I can also do some debugging of the broken
> pipe issues we keep having; Yes, rsync daemon. No, no ssh (private network).
> I'll come back and ask for help on that one soon I expect.
> Thanks for the help, thanks for the tool.
>    Bryan
>
> On 22/11/2011, at 2:43 PM, Henri Shustak wrote:
>
> Having built and tested 3.0.7 and ready to send it out into production, can
> anybody point me to 'best practices' for updating the binary and man pages
> and other issues around upgrading from the dodgy v2.6.9 that ships with
> late-10.4-thru-10.7?
>
>
> You could use /usr/local/bin as the install location for the rsync binary
> and then update your environment variable accordingly. This is just one
> possible approach.
>
> Not having replaced an OSX tool in the past, I've got no idea if Apple is
> prone to update these utils, or just 'fix' what I've done automatically
> during routine checks and system upgrades. Any experiences would be
> appreciated.
>
> If you replace the binary then it is possible that an Apple would overwrite
> your files.
>
> Despite this message not directly answering your questions, hopefully you
> find some of the information I have provided useful / informative.
>
>
> -
> This email is protected by LBackup, an open source backup solution.
> http://www.lbackup.org
> --
> Please use reply-all for most replies to avoid omitting the mailing list.
> To unsubscribe or change options:
> https://lists.samba.org/mailman/listinfo/rsync
> Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>
>
>
> --
> Please use reply-all for most replies to avoid omitting the mailing list.
> To unsubscribe or change options:
> https://lists.samba.org/mailman/listinfo/rsync
> Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>



-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: rsync email notification on success and failure + Log

2010-01-01 Thread Warren Oates
Hi:

Let cron(8) run your script for you. Cron will happily email you the
verbose output from rsync after its task has run.
man cron
man crontab
man 5 crontab

On Tue, Dec 29, 2009 at 7:12 PM, Sébastien Arpin  wrote:
> Hi,
>
> I have a bash script for rsync that should tranfer all my filer from one
> drive to the other.
>
> I would like to know how I can make the script sending me an email after the
> script is run and be able to know if it was a success or not and also if
> possible to include the log file.
>
> This is my script:
>
> !/bin/bash
>
> rsync -av --delete --log-file=/home/duffed/RSyncLog/$(date
> +%Y%m%d)_rsync_Multimedia.log /media/Multimedia/ /media/MultimediaBackUp
>
>
> Thanks a lot!
>
> Sébastien
>
>
>
>
>
>
>
> --
> Please use reply-all for most replies to avoid omitting the mailing list.
> To unsubscribe or change options:
> https://lists.samba.org/mailman/listinfo/rsync
> Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>



-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: Error messages 3.0.6pre1

2009-07-23 Thread Warren Oates
On Wed, Jul 22, 2009 at 2:52 AM, Mac User FR wrote:
> This is a malloc (memory allocation) error.
> It shows that a non-aligned pointer (pointer that doesn't start on an
> address multiple of 4 in a 32-bit machine) is being freed. As pointers must
> always be aligned, this indicates an error and the function free() doesn't
> know how to deal with it. But even if it doesn't release the memory at all,
> there are big chances that rsync ends up the execution normally. The only
> issue is a possible memory leak that is normally stopped when rsync exit.
>
> I didn't look nor am aware of the rsync code, but I guess this could be an
> issue of 32-bit pointer on a 64-bit machine.
>
> Best regards,
>
> Vitorio
>>

Hmm. Out of curiosity, I recompiled rsync as a 64-bit application, and
the same error comes up.
Something like this if you're interested (iconv won't work):

# MACOSX_DEPLOYMENT_TARGET=10.5
# CFLAGS=”-arch x86_64 -g -Os -pipe -no-cpp-precomp”
# CCFLAGS=”-arch x86_64 -g -Os -pipe”
# CXXFLAGS=”-arch x86_64 -g -Os -pipe”
# LDFLAGS=”-arch x86_64 -bind_at_load”
# export CFLAGS CXXFLAGS LDFLAGS CCFLAGS MACOSX_DEPLOYMENT_TARGET

This is arcane stuff, beyond my abilities or knowledge of programming.
As for Mat Cohen's question about the Xcode version, try:

xcodebuild -version

at your prompt.

-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: Error messages 3.0.6pre1

2009-07-21 Thread Warren Oates
On Mon, Jul 20, 2009 at 4:20 AM, Mark Cohen wrote:
> I too have the same issue (reported by Warren) - in that 3.06 backups appear
> valid, but the terminal shows the following errors:
>
> rsync(18819) malloc: *** error for object 0xf305c: Non-aligned pointer being
> freed
> *** set a breakpoint in malloc_error_break to debug
>
> I'm looking for confirmation that these are simply anomalies, and indeed are
> not cause for concern.
>
> Thanks.
> --
> Please use reply-all for most replies to avoid omitting the mailing list.
> To unsubscribe or change options:
> https://lists.samba.org/mailman/listinfo/rsync
> Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>

I have a draft email almost ready for the list about this. I have a
feeling it has to do with the latest version of the Xcode tools in
10.5.7 (DevToolsCore-1148.0) which provides gcc version 4.0.1 build
5490. My wife's MacBook is  DevToolsCore-921.0 with build 5465 of the
same gcc, and I don't think the error occurs when I use rsync "the
other way.". I'm not sure of this, because I've been a bit busy to do
more testing, which is why my email is still in "draft". At any rate,
the error only _seems_ to have started when I updated Xcode.

If you Google for that error, some interesting discussions pop up.

-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Error messages 3.0.6pre1

2009-04-17 Thread Warren Oates
[sorry if this appears twice -- I'm having trouble with my Gmail filters]

I compiled 3.0.6pre1, including  the crtimes and fileflags patches for
use on Intel OS X 10.5.6, as described by Mr. Bombich (thanks!) here:


I want to use 3.0.6 because it seems that this bug:

has been resolved (yay!).


-
[~]$ rsync --version
rsync  version 3.0.6pre1  protocol version 30
Copyright (C) 1996-2009 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
   64-bit files, 32-bit inums, 32-bit timestamps, 64-bit long ints,
   socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
   append, ACLs, xattrs, iconv, symtimes, file-flags
-

However, now I'm getting these kinds of messages throughout my output:

-
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard sketch. 01.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard sketch 00.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 03.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 02.psd
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 02.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 01.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leanord 01.jpg
-

and not _just_ related to deleting stuff, bercause I get this too:

-
Mail Folder/Trash
rsync(68157) malloc: *** error for object 0x8066b8: Non-aligned
pointer being freed
*** set a breakpoint in malloc_error_break to debug
Spool Folder/
Spool Folder/In.temp
rsync(68157) malloc: *** error for object 0x334760: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
-

and so on. This doesn't seem to be affecting my backups at all, but I
thought y'all might like to know about it.  I haven't included my
rsync commands, because I don't think that's what the problem is, but
they're pretty much along the lines of -aNHAXvhtb --fileflages with a
--backup-dir and an --exclude-from and --delete and --fake-super. I
may not need the H.

Thanks.

-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Error messages 3.0.6pre1

2009-04-17 Thread Warren Oates
I compiled 3.0.6pre1, including  the crtimes and fileflags patches for
use on Intel OS X 10.5.6, as described by Mr. Bombich (thanks!) here:


I want to use 3.0.6 because it seems that this bug:

has been resolved (yay!).


-
[~]$ rsync --version
rsync  version 3.0.6pre1  protocol version 30
Copyright (C) 1996-2009 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
64-bit files, 32-bit inums, 32-bit timestamps, 64-bit long ints,
socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
append, ACLs, xattrs, iconv, symtimes, file-flags
-

However, now I'm getting these kinds of messages throughout my output:

-
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard sketch. 01.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard sketch 00.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 03.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 02.psd
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 02.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leonard 01.jpg
rsync(68321) malloc: *** error for object 0x80af80: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
deleting Desktop/PURDY/Lines of the Poet/Leanord 01.jpg
-

and not _just_ related to deleting stuff, bercause I get this too:

-
Mail Folder/Trash
rsync(68157) malloc: *** error for object 0x8066b8: Non-aligned
pointer being freed
*** set a breakpoint in malloc_error_break to debug
Spool Folder/
Spool Folder/In.temp
rsync(68157) malloc: *** error for object 0x334760: Non-aligned
pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
-

and so on. This doesn't seem to be affecting my backups at all, but I
thought y'all might like to know about it.  I haven't included my
rsync commands, because I don't think that's what the problem is, but
they're pretty much along the lines of -aNHAXvhtb --fileflages with a
--backup-dir and an --exclude-from and --delete and --fake-super. I
may not need the H.

Thanks.

-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: Macintosh rsync: Inconsistent Behaviour: Hints Appreciated

2009-02-14 Thread Warren Oates
On Fri, Feb 13, 2009 at 1:08 PM, Yves Petronin  wrote:
> I have also used Mike Bombich' very clear instructions foud at
>
> http://www.bombich.com/mactips/rsync.html
>  in order  to compile the folllowing  version of rsync on OS10.4.11:
> rsync  version 3.0.4  protocol version 30
>
> I could not easily however find the associated manual to better understand
> some of Mike's suggested arguments such as:
> -aNHAXx --protect-args --fileflags --force-change
> Where can I find the meaning of them?
>
> Thanks
>
> rgds
>

man rsync

If you've got rsync 3.0.4 in /usr/local, then the rsync 3.0.4 man page
is probably in /usr/local/share/man/ (in man1). Set your $MANPATH to
look there first.

-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: Rsync from a third host?

2008-11-04 Thread Warren Oates
On Tue, Nov 4, 2008 at 2:33 PM, Warren Oates <[EMAIL PROTECTED]> wrote:

> You'll have to use an expect script for that, something like this one:
>
>  #!/usr/bin/expect -f
>
>  ## Note: set crontab's $PATH to search /usr/local/bin (or wherever
> you've installed rsync 3) first
>  spawn rsync -az --delete
> [EMAIL PROTECTED]:~/Documents/Eudora?Folder/ /Volumes/Backups/Eudora\
> Folder
>  expect "*?assword:*"
>  send  "\r"
>  set timeout -1
>  expect eof
>
> This is instructive in another way  -- both the sender and receiver
> are Intel OS X 10.5.5; note how rsync handles spaces in filenames
> compared to to the filesystem itself.

Well, that got totally mangled, didn't it.



#!/usr/bin/expect -f

## Note: set crontab's $PATH to search /usr/local/bin (or wherever
you've installed rsync 3) first

## all on one line, space after "?Folder/"
## I hate gmail sometimes
spawn rsync -az --delete [EMAIL PROTECTED]:~/Documents/Eudora?Folder/
/Volumes/Backups/Eudora\ Folder
## end of that line

expect "*?assword:*"
send  "\r"
set timeout -1
expect eof


-- 
W. Oates


-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: Rsync from a third host?

2008-11-04 Thread Warren Oates
On Tue, Nov 4, 2008 at 11:23 AM, kbrault <[EMAIL PROTECTED]> wrote:

> Now if I can just figure out how to stop it from prompting me for a password
> every time.
> --

You'll have to use an expect script for that, something like this one:

  #!/usr/bin/expect -f

  ## Note: set crontab's $PATH to search /usr/local/bin (or wherever
you've installed rsync 3) first
  spawn rsync -az --delete
[EMAIL PROTECTED]:~/Documents/Eudora?Folder/ /Volumes/Backups/Eudora\
Folder
  expect "*?assword:*"
  send  "\r"
  set timeout -1
  expect eof

This is instructive in another way  -- both the sender and receiver
are Intel OS X 10.5.5; note how rsync handles spaces in filenames
compared to to the filesystem itself.


-- 
W. Oates
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
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: help please, updating rsync on OS X

2008-01-17 Thread Warren Oates
On 1/16/08, Scott Griswold <[EMAIL PROTECTED]> wrote:
> Hi,
> I tried using rsyncX which is a GUI front end for rsync and as it
> turns out, the installer downgraded the current version from version
> 2.6.3  protocol version 28 to version 2.6.6  protocol version 27.
> I would like to learn more about how to get a newer version of rsync
> installed. Where would be a good place for a beginner to start?
>
> Thanks Much,
> Scott G.
>
>
> --
> To unsubscribe or change options: 
> https://lists.samba.org/mailman/listinfo/rsync
> Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>

You don't say what OS X you're using.  You can start here:

http://samba.anu.edu.au/rsync/download.html

I have 10.5.1 on an Intel Mac Pro, and the latest (git) versions build
clean and happpy here. Try the nightly snapshots if you can't get git
working. Rsync works best from the command line.
-- 
W. Oates
-- 
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: (Rsync 3.0) acls for OS X

2007-08-11 Thread Warren Oates
Thanks for the reply, Wayne.

See what happens when Leopard comes along I guess. Sometimes I hate Darwin ...

On 7/17/07, Wayne Davison <[EMAIL PROTECTED]> wrote:
> On Tue, Jul 17, 2007 at 03:36:10PM -0400, Warren Oates wrote:
> > What's the status of acl support for OS X? What needs to be done?
>
> What is needed is working ACL functions.  The posix ones are broken
> (e.g. acl_get_entry() has completely wrong return values), and even if I
> work around that, I can't find any way to interpret the ACLs enough to
> figure out the user/group IDs involved along with the access bits.  We
> need code that can list and set the ACLs (even if it uses OS X specific
> routines).
>
> ..wayne..
>


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


(Rsync 3.0) acls for OS X

2007-07-17 Thread Warren Oates

What's the status of acl support for OS X? What needs to be done?

The xattr support works nicely; you can try it out by moving a few
"text clippings" back and forth from HFS+ to ext3 (say) with and
without the -X switch set. Or move them locally that way, for that
matter. (Text clippings are _all_ resource fork).

--
W. Oates
--
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: rsync replacement

2007-07-13 Thread Warren Oates

On 7/13/07, Mike Jackson <[EMAIL PROTECTED]> wrote:

Looking for more efficient replication or synchronization solution than
rsync, take a look at syncdat by www.dataexpedition.com


Mike


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



Open source is it, Mike?
--
W. Oates
--
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: "Exclude" test fails on OS X (i386 Darwin 8.10.1)

2007-07-12 Thread Warren Oates

On 7/12/07, Wayne Davison <[EMAIL PROTECTED]> wrote:

On Wed, Jul 11, 2007 at 06:31:59PM -0400, Warren Oates wrote:
> The exclude test fails on OS X Darwin Kernel Version 8.10.1
> RELEASE_I386. It just hangs there until CTL-C.

It could hang on other architectures too, but was sporadic.  I just
checked-in a fix and released a new "nightly" tar file.

..wayne..



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


"Exclude" test fails on OS X (i386 Darwin 8.10.1)

2007-07-11 Thread Warren Oates

Version 3.0.0cvs  protocol version 30.PR4
Capabilities:
   64-bit files, 32-bit inums, 32-bit timestamps, 64-bit long ints,
   socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
   append, no ACLs, xattrs, iconv

The exclude test fails on OS X Darwin Kernel Version 8.10.1
RELEASE_I386. It just hangs there until CTL-C. The same test passes on
the G4  PPC Darwin 8.10.0, and on i686 Xeon (Slackware 12 in a
Parallels VM on the Intel Darwin 8.10.1)).

The log file looks like this:
- starrt -
Testing for symlinks using 'test -h'
   makepath /Users/warren/src/rsync/testtmp/exclude/from/foo/down/to/you
   makepath /Users/warren/src/rsync/testtmp/exclude/from/foo/sub
   makepath
/Users/warren/src/rsync/testtmp/exclude/from/bar/down/to/foo/too
   makepath
/Users/warren/src/rsync/testtmp/exclude/from/bar/down/to/bar/baz
   makepath
/Users/warren/src/rsync/testtmp/exclude/from/mid/for/foo/and/that/is/who
   makepath /Users/warren/src/rsync/testtmp/exclude/from/new/keep/this
   makepath /Users/warren/src/rsync/testtmp/exclude/from/new/lose/this
sending incremental file list
created directory /Users/warren/src/rsync/testtmp/exclude/chk
./
.filt
bar/
bar/.filt
bar/down/
bar/down/to/
bar/down/to/.filt2
bar/down/to/home-cvs-exclude
bar/down/to/bar/
bar/down/to/bar/.filt2
bar/down/to/bar/baz/
bar/down/to/bar/baz/file5.deep
bar/down/to/foo/
bar/down/to/foo/+ file3
bar/down/to/foo/.filt2
bar/down/to/foo/file1
bar/down/to/foo/file1.bak
bar/down/to/foo/file3
bar/down/to/foo/file4
bar/down/to/foo/file4.junk
bar/down/to/foo/to
foo/
foo/.filt
foo/file1
foo/file2
foo/file2.old
foo/sub/
foo/sub/file1
mid/
mid/.cvsignore
mid/.filt
mid/.filt2
mid/one-for-all
mid/one-in-one-out
mid/for/
mid/for/one-in-one-out
mid/for/foo/
mid/for/foo/extra
mid/for/foo/keep
rsync error: received SIGINT, SIGTERM, or SIGHUP (code 20) at
rsync.c(430) [sender=3.0.0cvs]

- end -
(you can see where I finally hit CTL-C).
--
W. Oates
--
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html