routeros_command – add support for dot in username (#65905)

This commit is contained in:
Egor Zaitsev 2020-01-09 07:04:47 +03:00 committed by ansibot
parent b05529c5a3
commit fff613dd3e

View file

@ -47,7 +47,7 @@ class TerminalModule(TerminalBase):
terminal_stdout_re = [
re.compile(br"\x1b<"),
re.compile(br"\[\w+\@[\w\s\-\.]+\] ?> ?$"),
re.compile(br"\[[\w\.]+\@[\w\s\-\.]+\] ?> ?$"),
re.compile(br"Please press \"Enter\" to continue!"),
re.compile(br"Do you want to see the software license\? \[Y\/n\]: ?"),
]