diff --git a/CHANGELOG.md b/CHANGELOG.md index 834b8268f6a..c0cd9f6dc79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -79,6 +79,7 @@ Ansible Changes By Release * dnos10_command * dnos10_config * dnos10_template + * dnos10_facts - exoscale: * exo_dns_domain * exo_dns_record diff --git a/lib/ansible/module_utils/dnos10.py b/lib/ansible/module_utils/dnos10.py index 9aeaa1be057..7ca9448d210 100644 --- a/lib/ansible/module_utils/dnos10.py +++ b/lib/ansible/module_utils/dnos10.py @@ -64,7 +64,7 @@ class Cli(CliBase): NET_PASSWD_RE = re.compile(r"[\r\n]?password:\s?$", re.I) CLI_PROMPTS_RE = [ - re.compile(r"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"), + re.compile(r"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:#) ?$"), re.compile(r"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$") ]