Merge branch 'master' into latest

# Please enter a commit message to explain why this merge is necessary,
latest v1.1.4
Nguyen Huu Thuong 5 years ago
commit 78e864b489

@ -98,6 +98,8 @@ def ssh_process(ssh, input_ssh):
stdin, stdout, stderr = ssh.exec_command(command_str) stdin, stdout, stderr = ssh.exec_command(command_str)
ssh_exit_status = stdout.channel.recv_exit_status()
out = "".join(stdout.readlines()) out = "".join(stdout.readlines())
out = out.strip() if out is not None else None out = out.strip() if out is not None else None
if out: if out:
@ -107,6 +109,9 @@ def ssh_process(ssh, input_ssh):
err = err.strip() if err is not None else None err = err.strip() if err is not None else None
if err: if err:
print(f"Error: \n{err}") print(f"Error: \n{err}")
if ssh_exit_status != 0:
print(f"ssh exit status: {ssh_exit_status}")
sys.exit(1) sys.exit(1)
pass pass

Loading…
Cancel
Save