mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
escape default prompt detection in telnet action plugin (#46573)
This change fixes an issue with the default prompt handling. The value needs to be escaped otherwise it does not work when converted to bytes.
This commit is contained in:
parent
299a5e4af3
commit
9180d2c7f2
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class ActionModule(ActionBase):
|
|||
|
||||
login_prompt = self._task.args.get('login_prompt', "login: ")
|
||||
password_prompt = self._task.args.get('password_prompt', "Password: ")
|
||||
prompts = self._task.args.get('prompts', ["$ "])
|
||||
prompts = self._task.args.get('prompts', ["\\$ "])
|
||||
commands = self._task.args.get('command') or self._task.args.get('commands')
|
||||
|
||||
if isinstance(commands, text_type):
|
||||
|
|
Loading…
Reference in a new issue