I'm surprised you don't see a message saying permission denied, but
by default rsync modules are read only. You need a
read only = false
in rsyncd.conf.
- Dave Dykstra
On Mon, Sep 17, 2001 at 09:25:49AM -0700, dennis wrote:> Hi
>
> I'm a new rsync user. I have two systems, A and B both with rsync
> installed. I've setup rsync in daemon mode on system B and want to
rsync
> a directory /projects/sw/lib/ from system A to system B. My rsyncd.conf
> file on system B looks like this:
>
> [swlibrary]
> path = /projects/sw
> comment = Master Libraries
>
> If I execute on system A:
>
> rsync systemB::
>
> I can see the module [swlibrary].
>
> I then execute this command on system A:
>
> cd /projects/sw
> rsync -avz lib/ systemB::swlibrary/lib
>
> When I check the directory on system B, no directories/files have been
> copied to system B.
> And if I check /var/adm/messages on system B, I see:
>
> Sep 17 08:45:39 systemB rsyncd[9273]: [ID 702911 daemon.info] rsync to
> swlibrary/lib/ from systemA (10.232.48.1)
> Sep 17 08:45:39 systemB rsyncd[9273]: [ID 702911 daemon.info] transfer
> interrupted (code 1) at main.c(398)
>
> Can anyone explain what this is telling me?
>
> Thanks
> Dennis