Displaying 1 result from an estimated 1 matches for "rsync_en".
Did you mean:
rsync_in
2009 Jun 25
1
DO NOT REPLY [Bug 6508] New: Inconsistent exit code behavior between local, ssh transport, and rsyncd transport
...nection.
How to reproduce:
-----------------
(0) mkdir rsync_experiment ; cd rsync_experiment
(1) Prepare rsyncd. I put the following in /etc/rsyncd.conf
[myroot]
path = /root/rsync_experiment/
uid = 0
read only = false
(2) Launch rsyncd. On Ubuntu edit /etc/default/rsync to have
"RSYNC_ENABLE=true" and then do "invoke-rc.d rsync start"
(3) Create a loop script to create/delete files as rapidly as possible:
#!/bin/sh
mkdir -p src
while true; do
tempfile=`mktemp src/somefile.XXXXXXXX`
rm -f $tempfile
done
(4) Invoke about 10 copies of that script as ba...