mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
minor update to the ios shared module
This completes the refactor for the ios shared module to change the derived class from NetCli to CliBase.
This commit is contained in:
parent
321d2e8cee
commit
1015f11428
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ import re
|
|||
from ansible.module_utils.basic import json
|
||||
from ansible.module_utils.network import NetworkModule, NetworkError, ModuleStub
|
||||
from ansible.module_utils.network import add_argument, register_transport, to_list
|
||||
from ansible.module_utils.shell import NetCli
|
||||
from ansible.module_utils.shell import CliBase
|
||||
from ansible.module_utils.netcli import Command
|
||||
from ansible.module_utils.urls import fetch_url, url_argument_spec, urlparse
|
||||
|
||||
|
@ -30,7 +30,7 @@ add_argument('use_ssl', dict(default=True, type='bool'))
|
|||
add_argument('validate_certs', dict(default=True, type='bool'))
|
||||
|
||||
|
||||
class Cli(NetCli):
|
||||
class Cli(CliBase):
|
||||
|
||||
NET_PASSWD_RE = re.compile(r"[\r\n]?password: $", re.I)
|
||||
|
||||
|
|
Loading…
Reference in a new issue