Fix nxos terminal regex to parse xml response (#31283)

Fixes #26130

Modify nxos terminal regex to parse a xml response.
This commit is contained in:
Ganesh Nalawade 2017-10-05 15:32:43 +05:30 committed by GitHub
parent 266c2f5831
commit 2e4dcc9dda

View file

@ -28,7 +28,7 @@ from ansible.errors import AnsibleConnectionFailure
class TerminalModule(TerminalBase):
terminal_stdout_re = [
re.compile(br'[\r\n]?[a-zA-Z]{1}[a-zA-Z0-9-_.]*[>|#|%](?:\s*)$'),
re.compile(br'[\r\n](?!\s*<)?[a-zA-Z_]{1}[a-zA-Z0-9-_.]*[>|#|%](?:\s*)$'),
re.compile(br'[\r\n]?[a-zA-Z]{1}[a-zA-Z0-9-_.]*\(.+\)#(?:\s*)$')
]