From c9fcbf7bdd46b493a1349662f92be63b66412007 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 18 Mar 2014 11:14:56 -0500 Subject: [PATCH] Change print message to vvv for missing known hosts in ssh.py --- lib/ansible/runner/connection_plugins/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/runner/connection_plugins/ssh.py b/lib/ansible/runner/connection_plugins/ssh.py index cc548a1c9b2..bcf90cbc7d3 100644 --- a/lib/ansible/runner/connection_plugins/ssh.py +++ b/lib/ansible/runner/connection_plugins/ssh.py @@ -157,7 +157,7 @@ class Connection(object): return False if (hfiles_not_found == len(host_file_list)): - print "previous known host file not found" + vvv("EXEC previous known host file not found for %s" % host) return True def exec_command(self, cmd, tmp_path, sudo_user=None, sudoable=False, executable='/bin/sh', in_data=None, su_user=None, su=False):