Fix Example for lun copy (#53281)

* Revert "changes to clusteR"

This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80.

* Revert "changes to clusteR"

This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80.

* Revert "Revert "changes to clusteR""

This reverts commit f1104a37b4.

* Revert "Revert "changes to clusteR""

This reverts commit f1104a37b4.

* documentation changes

* Revert "documentation changes"

This reverts commit 02c369d0414fdff492d90865c903bdade3174261.

* Fix example
pull/53431/head
Chris Archibald 6 years ago committed by ansibot
parent 6b294eab4d
commit 98343993ee

@ -55,15 +55,14 @@ options:
''' '''
EXAMPLES = """ EXAMPLES = """
- name: Copy LUN - name: Copy LUN
na_ontap_lun: na_ontap_lun_copy:
na_ontap_lun_copy: destination_vserver: ansible
destination_vserver: ansible destination_path: /vol/test/test_copy_dest_dest_new
destination_path: /vol/test/test_copy_dest_dest_new source_path: /vol/test/test_copy_1
source_path: /vol/test/test_copy_1 source_vserver: ansible
source_vserver: ansible hostname: "{{ netapp_hostname }}"
hostname: "{{ netapp_hostname }}" username: "{{ netapp_username }}"
username: "{{ netapp_username }}" password: "{{ netapp_password }}"
password: "{{ netapp_password }}"
""" """
RETURN = """ RETURN = """
@ -108,7 +107,7 @@ class NetAppOntapLUNCopy(object):
def get_lun(self): def get_lun(self):
""" """
Check if the LUN exis Check if the LUN exists
:return: true is it exists, false otherwise :return: true is it exists, false otherwise
:rtype: bool :rtype: bool

Loading…
Cancel
Save