mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #17166 from privateip/ios
fix import statement in ios shared module
This commit is contained in:
commit
959a5e5fd1
1 changed files with 4 additions and 4 deletions
|
@ -22,8 +22,8 @@ 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.netcli import NetCli
|
||||
from ansible.module_utils.netcmd import Command
|
||||
from ansible.module_utils.shell import NetCli
|
||||
from ansible.module_utils.netcli import Command
|
||||
from ansible.module_utils.urls import fetch_url, url_argument_spec, urlparse
|
||||
|
||||
add_argument('use_ssl', dict(default=True, type='bool'))
|
||||
|
@ -60,7 +60,7 @@ class Cli(NetCli):
|
|||
Command('enable', prompt=self.NET_PASSWD_RE, response=passwd)
|
||||
)
|
||||
|
||||
### implementation of netcmd.Cli ###
|
||||
### implementation of netcli.Cli ###
|
||||
|
||||
def run_commands(self, commands, **kwargs):
|
||||
return self.execute(to_list(commands))
|
||||
|
@ -179,7 +179,7 @@ class Restconf(object):
|
|||
return self.request('DELETE', path, data, headers)
|
||||
|
||||
|
||||
### implementation of netcmd.Cli ###
|
||||
### implementation of netcli.Cli ###
|
||||
|
||||
def run_commands(self, commands):
|
||||
responses = list()
|
||||
|
|
Loading…
Reference in a new issue