1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #17603 from skg-net/dnos10_facts

Added support for facts module for Dell Networking OS10 device.
This commit is contained in:
Peter Sprygada 2016-09-16 08:02:44 -04:00 committed by GitHub
commit 697888965e
2 changed files with 2 additions and 1 deletions

View file

@ -79,6 +79,7 @@ Ansible Changes By Release
* dnos10_command * dnos10_command
* dnos10_config * dnos10_config
* dnos10_template * dnos10_template
* dnos10_facts
- exoscale: - exoscale:
* exo_dns_domain * exo_dns_domain
* exo_dns_record * exo_dns_record

View file

@ -64,7 +64,7 @@ class Cli(CliBase):
NET_PASSWD_RE = re.compile(r"[\r\n]?password:\s?$", re.I) NET_PASSWD_RE = re.compile(r"[\r\n]?password:\s?$", re.I)
CLI_PROMPTS_RE = [ CLI_PROMPTS_RE = [
re.compile(r"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:>|#) ?$"), re.compile(r"[\r\n]?[\w+\-\.:\/\[\]]+(?:\([^\)]+\)){,3}(?:#) ?$"),
re.compile(r"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$") re.compile(r"\[\w+\@[\w\-\.]+(?: [^\]])\] ?[>#\$] ?$")
] ]