mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Command authorization failed ios regex (#40819)
* Add 'Command authorization failed' to stderr regex list * Add missing comma * Remove superfluous comma
This commit is contained in:
parent
cb636eb522
commit
026de6bcb0
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ class TerminalModule(TerminalBase):
|
|||
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)
|
||||
re.compile(br"[%\S] ?Informational: ?[\s]+", re.I),
|
||||
re.compile(br"Command authorization failed")
|
||||
]
|
||||
|
||||
def on_open_shell(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue