From 13403b36889a24740178908d3f816d80545b06ad Mon Sep 17 00:00:00 2001 From: Chris Archibald Date: Mon, 12 Aug 2019 07:30:00 -0700 Subject: [PATCH] update to command (#60141) --- lib/ansible/modules/storage/netapp/na_ontap_command.py | 2 +- test/units/modules/storage/netapp/test_na_ontap_command.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/storage/netapp/na_ontap_command.py b/lib/ansible/modules/storage/netapp/na_ontap_command.py index 3258b3520f0..1af0bb7c57e 100644 --- a/lib/ansible/modules/storage/netapp/na_ontap_command.py +++ b/lib/ansible/modules/storage/netapp/na_ontap_command.py @@ -17,7 +17,7 @@ description: extends_documentation_fragment: - netapp.na_ontap 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" options: command: diff --git a/test/units/modules/storage/netapp/test_na_ontap_command.py b/test/units/modules/storage/netapp/test_na_ontap_command.py index 184ae3a41a2..4b5af4abdc8 100644 --- a/test/units/modules/storage/netapp/test_na_ontap_command.py +++ b/test/units/modules/storage/netapp/test_na_ontap_command.py @@ -106,9 +106,9 @@ class TestMyModule(unittest.TestCase): def set_default_args(vsim=False): ''' populate hostname/username/password ''' if vsim: - hostname = '10.193.78.219' + hostname = '10.10.10.10' username = 'admin' - password = 'netapp1!' + password = 'admin' else: hostname = 'hostname' username = 'username'