From: Andre Noll Date: Thu, 20 Dec 2012 13:38:41 +0000 (+0100) Subject: rsync: Remove hardcoded --quiet option. X-Git-Tag: v0.1.5~3 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=d880112b1483b45f1e7db632cb09bbe05fb2df86;hp=d880112b1483b45f1e7db632cb09bbe05fb2df86;p=dss.git rsync: Remove hardcoded --quiet option. When running in daemon mode, the stdout and stderr stream of dss and all its child processes are redirected to /dev/null. In particular any output from the rsync process is discarded. Therefore, whenever a new snapshot is created, dss currently passes --quiet to the underlying rsync command, along with --archive and --delete. However, as was pointed out by Sebastian Schultheiß, if the rsync command fails for unknown reasons, the --quiet option complicates debugging for the questionable benefit of saving the I/O for a few writes to /dev/null. This patch removes the --quiet option. ---