Remove -v from rsync, else it stalls
From: Ryan Stutsman
Signed-off-by: Martin J. Bligh <mbligh@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@660 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/hosts/ssh_host.py b/server/hosts/ssh_host.py
index fadbb87..45a1e89 100644
--- a/server/hosts/ssh_host.py
+++ b/server/hosts/ssh_host.py
@@ -210,7 +210,7 @@
ignore_status=True)
if result.exit_status == 0:
- utils.run('rsync --rsh=ssh -avz %s %s@%s:"%s"' % (
+ utils.run('rsync --rsh=ssh -az %s %s@%s:"%s"' % (
" ".join(processed_source), self.user,
self.hostname, utils.scp_remote_escape(dest)))
else: