mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix eos terminal plugin (#49920)
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
This commit is contained in:
parent
418c705196
commit
e009eff925
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class TerminalModule(TerminalBase):
|
||||||
# Strings like this regarding VLANs are not errors
|
# Strings like this regarding VLANs are not errors
|
||||||
re.compile(br"[^\r\n]+ not found(?! in current VLAN)", re.I),
|
re.compile(br"[^\r\n]+ not found(?! in current VLAN)", re.I),
|
||||||
re.compile(br"'[^']' +returned error code: ?\d+"),
|
re.compile(br"'[^']' +returned error code: ?\d+"),
|
||||||
re.compile(br"[^\r\n]\/bin\/(?:ba)?sh"),
|
re.compile(br"[^\r\n](?<! shell )\/bin\/(?:ba)?sh"),
|
||||||
re.compile(br"% More than \d+ OSPF instance", re.I),
|
re.compile(br"% More than \d+ OSPF instance", re.I),
|
||||||
re.compile(br"% Subnet [0-9a-f.:/]+ overlaps", re.I),
|
re.compile(br"% Subnet [0-9a-f.:/]+ overlaps", re.I),
|
||||||
re.compile(br"Maximum number of pending sessions has been reached"),
|
re.compile(br"Maximum number of pending sessions has been reached"),
|
||||||
|
|
Loading…
Reference in a new issue