Skip to content

Commit

Permalink
update networking example (ansible#54802)
Browse files Browse the repository at this point in the history
change syntax from param=value to param: value
  • Loading branch information
carchi8py authored and acozine committed Apr 5, 2019
1 parent 7474e39 commit 730176d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/ansible/modules/storage/netapp/na_ontap_net_vlan.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 @@ -44,13 +44,13 @@
EXAMPLES = """
- name: create VLAN
na_ontap_net_vlan:
state=present
vlanid=13
node={{ vlan node }}
parent_interface={{ vlan parent interface name }}
username={{ netapp_username }}
password={{ netapp_password }}
hostname={{ netapp_hostname }}
state: present
vlanid: 13
node: "{{ vlan node }}"
parent_interface: "{{ vlan parent interface name }}"
username: "{{ netapp_username }}"
password: "{{ netapp_password }}"
hostname: "{{ netapp_hostname }}"
"""

RETURN = """
Expand Down

0 comments on commit 730176d

Please sign in to comment.