Commit de2f62bd by Brian Coca

fixed error reporting for unkown become user

parent 6d6bfbc3
...@@ -236,7 +236,7 @@ class Connection(ConnectionBase): ...@@ -236,7 +236,7 @@ class Connection(ConnectionBase):
self._display.debug("chunk is: %s" % chunk) self._display.debug("chunk is: %s" % chunk)
if not chunk: if not chunk:
if 'unknown user' in become_output: if 'unknown user' in become_output:
raise AnsibleError( 'user %s does not exist' % become_user) raise AnsibleError( 'user %s does not exist' % self._play_context.become_user)
else: else:
break break
#raise AnsibleError('ssh connection closed waiting for password prompt') #raise AnsibleError('ssh connection closed waiting for password prompt')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment