paramiko_ssh: fix crash upon pass prompt in py3

The pass prompt expects an answer and compares a `str` to a binary buffer, thus crashing.

It's an obvious fix to help transitioning towards Python3 and hopes it does not need a specific test.
This commit is contained in:
Victor Perron 2017-03-29 15:02:28 +02:00 committed by Toshio Kuratomi
parent b52dbddc17
commit bc44175d8d

View file

@ -302,7 +302,7 @@ class Connection(ConnectionBase):
chunk = chan.recv(bufsize)
display.debug("chunk is: %s" % chunk)
if not chunk:
if 'unknown user' in become_output:
if b'unknown user' in become_output:
raise AnsibleError( 'user %s does not exist' % self._play_context.become_user)
else:
break