mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
minor bug fixes and updates to shell
This commit is contained in:
@@ -44,6 +44,8 @@ CLI_ERRORS_RE = [
|
|||||||
re.compile(r"connection timed out", re.I),
|
re.compile(r"connection timed out", re.I),
|
||||||
re.compile(r"[^\r\n]+ not found", re.I),
|
re.compile(r"[^\r\n]+ not found", re.I),
|
||||||
re.compile(r"'[^']' +returned error code: ?\d+"),
|
re.compile(r"'[^']' +returned error code: ?\d+"),
|
||||||
|
re.compile(r"syntax error"),
|
||||||
|
re.compile(r"unknown command")
|
||||||
]
|
]
|
||||||
|
|
||||||
def to_list(val):
|
def to_list(val):
|
||||||
@@ -77,6 +79,8 @@ class Shell(object):
|
|||||||
self.ssh = None
|
self.ssh = None
|
||||||
self.shell = None
|
self.shell = None
|
||||||
|
|
||||||
|
self._matched_prompt = None
|
||||||
|
|
||||||
self.prompts = list()
|
self.prompts = list()
|
||||||
self.prompts.extend(CLI_PROMPTS_RE)
|
self.prompts.extend(CLI_PROMPTS_RE)
|
||||||
|
|
||||||
@@ -169,7 +173,9 @@ class Shell(object):
|
|||||||
raise ShellError('%s' % response)
|
raise ShellError('%s' % response)
|
||||||
|
|
||||||
for regex in self.prompts:
|
for regex in self.prompts:
|
||||||
if regex.search(response):
|
match = regex.search(response)
|
||||||
|
if match:
|
||||||
|
self._matched_prompt = match.group()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def get_cli_connection(module):
|
def get_cli_connection(module):
|
||||||
|
|||||||
Reference in New Issue
Block a user