fixed detection of incorrect password

pull/11306/head
Brian Coca 9 years ago
parent c745796707
commit 3fab516d3d

@ -139,7 +139,7 @@ class ConnectionBase(with_metaclass(ABCMeta, object)):
def check_incorrect_password(self, output):
incorrect_password = gettext.dgettext(self._connection_info.become_method, C.BECOME_ERROR_STRINGS[self._connection_info.become_method])
if output.strip().endswith(incorrect_password):
if incorrect_password in output:
raise AnsibleError('Incorrect %s password' % self._connection_info.become_method)
def handle_become_password(self, p, stdin):

Loading…
Cancel
Save