# output = 'SSH encountered an unknown error. The output was:\n%s' % (result['stdout']+result['stderr'])
#else:
# output = 'SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue'
output='SSH encountered an unknown error. The output was:\n%s'%(result['stdout']+result['stderr'])
ifself._connection_info.verbosity>3:
output='SSH encountered an unknown error. The output was:\n%s'%(result['stdout']+result['stderr'])
else:
output='SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue'
elif'No space left on device'inresult['stderr']:
output=result['stderr']
else:
...
...
@@ -462,7 +462,7 @@ class ActionBase:
err=stderr
debug("done with _low_level_execute_command() (%s)"%(cmd,))