Handle empty results from failed connections in _remote_md5()

Fixes #5800
release1.5.0
James Cammarata 11 years ago
parent 2dbbf29421
commit 79645535c0

@ -976,7 +976,12 @@ class Runner(object):
data = self._low_level_exec_command(conn, cmd, tmp, sudoable=True)
data2 = utils.last_non_blank_line(data['stdout'])
try:
return data2.split()[0]
if data2 == '':
# this may happen if the connection to the remote server
# failed, so just return "INVALIDMD5SUM" to avoid errors
return "INVALIDMD5SUM"
else:
return data2.split()[0]
except IndexError:
sys.stderr.write("warning: md5sum command failed unusually, please report this to the list so it can be fixed\n")
sys.stderr.write("command: %s\n" % md5s)

Loading…
Cancel
Save