Skip to content

Commit

Permalink
Update example to be correct (ansible#53337)
Browse files Browse the repository at this point in the history
* Revert "changes to clusteR"

This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80.

* Revert "changes to clusteR"

This reverts commit 33ee1b71e4bc8435fb315762a871f8c4cb6c5f80.

* Revert "Revert "changes to clusteR""

This reverts commit f1104a3.

* Revert "Revert "changes to clusteR""

This reverts commit f1104a3.

* documentation changes

* Revert "documentation changes"

This reverts commit 02c369d0414fdff492d90865c903bdade3174261.

* Fix rename example

* Fix docs
  • Loading branch information
carchi8py authored and samccann committed Mar 6, 2019
1 parent c6aecf4 commit 84ebdb6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/ansible/modules/storage/netapp/na_ontap_qtree.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/python

# (c) 2018, NetApp, Inc
# (c) 2018-2019, NetApp, Inc
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import absolute_import, division, print_function
Expand Down Expand Up @@ -55,7 +55,7 @@
'''

EXAMPLES = """
- name: Create QTree
- name: Create Qtrees
na_ontap_qtree:
state: present
name: ansibleQTree
Expand All @@ -65,9 +65,10 @@
username: "{{ netapp_username }}"
password: "{{ netapp_password }}"
- name: Rename QTree
- name: Rename Qtrees
na_ontap_qtree:
state: present
from_name: ansibleQTree_rename
name: ansibleQTree
flexvol_name: ansibleVolume
vserver: ansibleVServer
Expand Down

0 comments on commit 84ebdb6

Please sign in to comment.