Skip to content
Snippets Groups Projects
Commit ebcd61bb authored by Iustin Pop's avatar Iustin Pop
Browse files

ssh.VerifyNodeHostname: remove the quiet flag


This is not needed for this function, and can interfere with debugging
of ssh failures.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent 66287fa8
No related branches found
No related tags found
No related merge requests found
#
#
# 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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment