mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-26 13:18:58 +07:00
use readlines on stdout so we'll block on long running commands
This commit is contained in:
@@ -25,6 +25,7 @@ from itertools import izip
|
||||
import os
|
||||
import json
|
||||
import traceback
|
||||
import select
|
||||
|
||||
# non-core
|
||||
import paramiko
|
||||
@@ -143,7 +144,7 @@ class Runner(object):
|
||||
def _exec_command(self, conn, cmd):
|
||||
''' execute a command over SSH '''
|
||||
stdin, stdout, stderr = conn.exec_command(cmd)
|
||||
results = stdout.read()
|
||||
results = "\n".join(stdout.readlines())
|
||||
return results
|
||||
|
||||
def _copy_module(self, conn):
|
||||
|
||||
Reference in New Issue
Block a user