This is not needed for this function, and can interfere with debugging of ssh failures.
Signed-off-by: Iustin Pop <[email protected]> --- lib/ssh.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ssh.py b/lib/ssh.py index ee8aba6..1a3c101 100644 --- a/lib/ssh.py +++ b/lib/ssh.py @@ -1,7 +1,7 @@ # # -# Copyright (C) 2006, 2007, 2010 Google Inc. +# Copyright (C) 2006, 2007, 2010, 2011 Google Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -254,7 +254,7 @@ class SshRunner: - detail: string with details """ - retval = self.Run(node, 'root', 'hostname --fqdn') + retval = self.Run(node, "root", "hostname --fqdn", quiet=False) if retval.failed: msg = "ssh problem" -- 1.7.3.1
