Commit 53adbd7a authored by Wayne Davison's avatar Wayne Davison

If we encounter an error, output the rsyncd.log file, if it exists.

parent 17f033b7
......@@ -220,6 +220,11 @@ do
echo "----- $testbase log follows"
cat "$scratchdir/test.log"
echo "----- $testbase log ends"
if [ -f "$scratchdir/rsyncd.log" ]; then
echo "----- $testbase rsyncd.log follows"
cat "$scratchdir/rsyncd.log"
echo "----- $testbase rsyncd.log ends"
fi
fi
case $result in
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment