mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 18:05:27 -07:00
Fix baud rate and nxos_logging default case idempotency bug (#43295)
* Fix baud rate and idempotency bug * Fix Shippable errors * Combine commands calls * Fix Shippable errors II
This commit is contained in:
parent
1ab411229a
commit
18235af363
3 changed files with 101 additions and 6 deletions
|
@ -47,7 +47,8 @@ class TerminalModule(TerminalBase):
|
|||
re.compile(br"syntax error"),
|
||||
re.compile(br"unknown command"),
|
||||
re.compile(br"user not present"),
|
||||
re.compile(br"invalid (.+?)at '\^' marker", re.I)
|
||||
re.compile(br"invalid (.+?)at '\^' marker", re.I),
|
||||
re.compile(br"baud rate of console should be (\d*) to increase severity level", re.I)
|
||||
]
|
||||
|
||||
def on_become(self, passwd=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue