update to command (#60141)
This commit is contained in:
parent
5df9075386
commit
13403b3688
2 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ description:
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- netapp.na_ontap
|
- netapp.na_ontap
|
||||||
module: na_ontap_command
|
module: na_ontap_command
|
||||||
short_description: "NetApp ONTAP Run any cli command"
|
short_description: NetApp ONTAP Run any cli command, the username provided needs to have console login permission.
|
||||||
version_added: "2.7"
|
version_added: "2.7"
|
||||||
options:
|
options:
|
||||||
command:
|
command:
|
||||||
|
|
|
@ -106,9 +106,9 @@ class TestMyModule(unittest.TestCase):
|
||||||
def set_default_args(vsim=False):
|
def set_default_args(vsim=False):
|
||||||
''' populate hostname/username/password '''
|
''' populate hostname/username/password '''
|
||||||
if vsim:
|
if vsim:
|
||||||
hostname = '10.193.78.219'
|
hostname = '10.10.10.10'
|
||||||
username = 'admin'
|
username = 'admin'
|
||||||
password = 'netapp1!'
|
password = 'admin'
|
||||||
else:
|
else:
|
||||||
hostname = 'hostname'
|
hostname = 'hostname'
|
||||||
username = 'username'
|
username = 'username'
|
||||||
|
|
Loading…
Reference in a new issue