1
0
Fork 0
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:
Ricardo Carrillo Cruz 2018-05-29 14:49:07 +02:00 committed by GitHub
parent cb636eb522
commit 026de6bcb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):