mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Add regex to catch ios error prompt (#35007)
* Move the error checking from ios_l3_module to ios termianl plugin by adding additional regex to catch error prompt.
This commit is contained in:
@@ -302,12 +302,7 @@ def main():
|
||||
|
||||
if commands:
|
||||
if not module.check_mode:
|
||||
response = load_config(module, commands)
|
||||
for item in response:
|
||||
for cmd, rsp in iteritems(item):
|
||||
for err in ('Error:', 'overlaps with', 'Bad mask'):
|
||||
if err in rsp:
|
||||
module.fail_json(msg="command '%s' failed with error '%s'." % (cmd, rsp))
|
||||
load_config(module, commands)
|
||||
|
||||
result['changed'] = True
|
||||
|
||||
|
||||
@@ -43,6 +43,10 @@ class TerminalModule(TerminalBase):
|
||||
re.compile(br"connection timed out", re.I),
|
||||
re.compile(br"[^\r\n]+ not found"),
|
||||
re.compile(br"'[^']' +returned error code: ?\d+"),
|
||||
re.compile(br"Bad mask", re.I),
|
||||
re.compile(br"% ?(\S+) ?overlaps with ?(\S+)", re.I),
|
||||
re.compile(br"[%\S] ?Error: ?[\s]+", re.I),
|
||||
re.compile(br"[%\S] ?Informational: ?[\s]+", re.I)
|
||||
]
|
||||
|
||||
def on_open_shell(self):
|
||||
|
||||
Reference in New Issue
Block a user