Fix to resolve bug 46671, which now handles checking for Nonetype connection prompt (#46677)

* added Nonetype check

* implemented review comment

* review changes
pull/47038/head
Sumit Jaiswal 6 years ago committed by GitHub
parent 0b15ad00c1
commit 9ddceaf78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,7 +58,8 @@ class TerminalModule(TerminalBase):
raise AnsibleConnectionFailure('unable to set terminal parameters')
def on_become(self, passwd=None):
if self._get_prompt().endswith(b'#'):
conn_prompt = self._get_prompt()
if not conn_prompt or conn_prompt.endswith(b'#'):
return
cmd = {u'command': u'enable'}

Loading…
Cancel
Save