1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

update networking example (#54802)

change syntax from param=value to param: value
This commit is contained in:
Chris Archibald 2019-04-05 12:27:55 -07:00 committed by Alicia Cozine
parent 7474e39c37
commit 730176db81

View file

@ -1,6 +1,6 @@
#!/usr/bin/python #!/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) # 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 from __future__ import absolute_import, division, print_function
@ -44,13 +44,13 @@ notes:
EXAMPLES = """ EXAMPLES = """
- name: create VLAN - name: create VLAN
na_ontap_net_vlan: na_ontap_net_vlan:
state=present state: present
vlanid=13 vlanid: 13
node={{ vlan node }} node: "{{ vlan node }}"
parent_interface={{ vlan parent interface name }} parent_interface: "{{ vlan parent interface name }}"
username={{ netapp_username }} username: "{{ netapp_username }}"
password={{ netapp_password }} password: "{{ netapp_password }}"
hostname={{ netapp_hostname }} hostname: "{{ netapp_hostname }}"
""" """
RETURN = """ RETURN = """