mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Bug Fix to na_ontap_iscsi (#53871)
* Revert "changes to clusteR" This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80. * Revert "changes to clusteR" This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80. * Revert "Revert "changes to clusteR"" This reverts commit f1104a37b42886aebb4d2b2ab27c91c96d97858a. * Revert "Revert "changes to clusteR"" This reverts commit f1104a37b42886aebb4d2b2ab27c91c96d97858a. * Revert "documentation changes" This reverts commit 02c369d0414fdff492d90865c903bdade3174261. * fix bug * fix bug * Revert "Revert "documentation changes"" This reverts commit 97de518686c51dde83eb4512f1c3ab284308fc4c.
This commit is contained in:
parent
3ff20436b6
commit
809de4e033
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
# (c) 2017, NetApp, Inc
|
# (c) 2017-2019, NetApp, Inc
|
||||||
# GNU General Public License v3.0+
|
# GNU General Public License v3.0+
|
||||||
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
@ -249,10 +249,10 @@ class NetAppOntapISCSI(object):
|
||||||
else:
|
else:
|
||||||
if self.state == 'present':
|
if self.state == 'present':
|
||||||
if not iscsi_service_exists:
|
if not iscsi_service_exists:
|
||||||
self.create_iscsi_service()
|
self.create_iscsi_service() # the service is stopped when initially created
|
||||||
elif self.service_state == 'started':
|
if self.service_state == 'started':
|
||||||
self.start_iscsi_service()
|
self.start_iscsi_service()
|
||||||
else:
|
if iscsi_service_exists and self.service_state == 'stopped':
|
||||||
self.stop_iscsi_service()
|
self.stop_iscsi_service()
|
||||||
|
|
||||||
elif self.state == 'absent':
|
elif self.state == 'absent':
|
||||||
|
|
Loading…
Reference in a new issue