On Tue, 17 Aug 2004, D Andrew Reynhout wrote:
> Yes, I'm working on a proper AppleDouble format next.
Great, this is good news! I think rsync and the Mac community has been
sorely missing this for some time.
> It requires a combination of the two file handling procedures I've
> added so far, whi
On Wed, Aug 18, 2004 at 11:46:29AM +0200, Petter Reinholdtsen wrote:
> I needed to do this small change to rsync.h to get rsync 2.6.2 to
> compile on AIX.
I thank you for taking the time to report this, but that bug was fixed
in CVS quite a while back. If you would, please test the 2.6.3pre1
rele
On Wed, Aug 18, 2004 at 11:55:01AM +0200, Petter Reinholdtsen wrote:
> Thank you. I noticed your patch on
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg09671.html>,
> but it seem to be missing in version 2.6.2. When do you plan to
> include it in the official source?
That patch was included
I use the following bit of shell to check whether an rsync server is up:
#!/bin/bash
# Prod the rsync server...
check=$(echo -e "\n" |netcat server1.example.com 873);
if [ "$check" != "@RSYNCD: 26" ]; then {
echo "Unable to connect to rsync server."
# Perform your failsafe measures here
} f
Is there a way to tell rsync that if it does not have contact with a
certain rsync server to continue on to another for file requests? I
imagine something like this, where you define two servers as the
source...
/usr/local/bin/rsync {serv1,serv2}::src dest
...proposing that
1. Should serv1 be d
Hi
Thanks for your previous answers.
Now I'm fighting with setting up ssh tunnelling with rsync
I got a rsync server (100.100.100.100) listening on port 873. It's
configured with a rsync user.
(It works without ssh tunnelling)
On my rsync client I issue this command:
ssh -f -L :100.100.100.10
[Wayne Davison, 2004-02-25]
> Unfortunately, that patch is too simplistic -- e.g. it doesn't handle
> the case where the file had to be copied into place. I'll try to come
> up with a better patch, but I do want to be sure we think though any
> repercussions before I commit a change like this.
T
Hi.
I needed to do this small change to rsync.h to get rsync 2.6.2 to
compile on AIX. The problem is that the extra comma is illegal
(someone forgot to add support for it) in C89, and the AIX compiler do
not accept it. The compiler I'm using is not yet updated to support
C99 where the comma was