Hello everyone, Here is the scenario: I have an rsync daemon on server P and a script on server H. The source is server P. Files are copied from P to H. I noticed that when the script is run, there are 2 instances of rsync running (using ps) on server H. Is this normal behaviour? My rsync command is: rsync -rlpogt --delete-after --exclude-from=$EXCLUDESFILE --temp-dir=/tmp --stats $1 $2 >> $LOGFILE -------------- next part -------------- HTML attachment scrubbed and removed
On Wed, Jun 29, 2005 at 10:39:57AM +0400, apache7@gmx.net wrote:> I noticed that when the script is run, there are 2 instances of rsync > running (using ps) on server H. Is this normal behaviour?Yes. The receiving side forks into a separate generator and receiver process. ..wayne..