Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGanesh Nalawade <ganesh634@gmail.com>2017-10-11 16:33:21 +0300
committerGitHub <noreply@github.com>2017-10-11 16:33:21 +0300
commit97d5e0d0276c054882d3039d77c6edfe391d10d1 (patch)
treed721e363bf96b5fbef0ee83677ea0f752375632b /bin
parent865a38bb8d26bb1d0cea43f9ede966fcbc878949 (diff)
Remove log of command executed in persistent connection (#31581)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ansible-connection1
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/ansible-connection b/bin/ansible-connection
index 31fd0ac0f70..dd727743da4 100755
--- a/bin/ansible-connection
+++ b/bin/ansible-connection
@@ -214,7 +214,6 @@ class Server():
def do_EXEC(self, data):
cmd = data.split(b'EXEC: ')[1]
- display.display('Command executed: %s' % cmd, log_only=True)
return self.connection.exec_command(cmd)
def do_PUT(self, data):