Skip to content

Commit

Permalink
fixes option names in examples (ansible#62706)
Browse files Browse the repository at this point in the history
  • Loading branch information
akira6592 authored and justjais committed Sep 23, 2019
1 parent d6ef7c8 commit 03b4d8f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions lib/ansible/modules/network/ios/ios_l3_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
- name: GigabitEthernet0/3.100
ipv4:
- address: 192.168.0.3/24
operation: merged
state: merged
# After state:
# ------------
Expand Down Expand Up @@ -213,7 +213,7 @@
ipv4:
- address: 192.168.0.3/24
secondary: True
operation: replaced
state: replaced
# After state:
# ------------
Expand Down Expand Up @@ -269,7 +269,7 @@
- name: GigabitEthernet0/3.100
ipv6:
- address: autoconfig
operation: overridden
state: overridden
# After state:
# ------------
Expand Down Expand Up @@ -321,7 +321,7 @@
config:
- name: GigabitEthernet0/2
- name: GigabitEthernet0/3.100
operation: deleted
state: deleted
# After state:
# -------------
Expand Down Expand Up @@ -374,7 +374,7 @@
- name: "Delete L3 attributes of ALL interfaces together (NOTE: This won't delete the interface itself)"
ios_l3_interfaces:
operation: deleted
state: deleted
# After state:
# -------------
Expand Down
10 changes: 5 additions & 5 deletions lib/ansible/modules/network/iosxr/iosxr_l3_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
ipv4:
- address: 192.168.2.1/24
secondary: True
operation: merged
state: merged
# After state:
# ------------
Expand Down Expand Up @@ -190,7 +190,7 @@
- address: 192.168.0.2/24
- address: 192.168.2.1/24
secondary: True
operation: overridden
state: overridden
# After state:
# -------------
Expand Down Expand Up @@ -247,7 +247,7 @@
- name: GigabitEthernet0/0/0/4
ipv4:
- address: 192.168.0.2/24
operation: replaced
state: replaced
# After state:
# -------------
Expand Down Expand Up @@ -303,7 +303,7 @@
- name: GigabitEthernet0/0/0/3
- name: GigabitEthernet0/0/0/4
- name: GigabitEthernet0/0/0/3.700
operation: deleted
state: deleted
# After state:
# -------------
Expand Down Expand Up @@ -356,7 +356,7 @@
- name: "Delete L3 attributes of all interfaces (Note: This won't delete the interface itself)"
iosxr_l3_interfaces:
operation: deleted
state: deleted
# After state:
# -------------
Expand Down
8 changes: 4 additions & 4 deletions lib/ansible/modules/network/nxos/nxos_bfd_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
- name: Configure interfaces
nxos_bfd_interfaces:
operation: deleted
state: deleted
# Using merged
Expand All @@ -96,7 +96,7 @@
- name: Ethernet1/2
bfd: disable
echo: disable
operation: merged
state: merged
# Using overridden
Expand All @@ -110,7 +110,7 @@
- name: Ethernet1/2
bfd: disable
echo: disable
operation: overridden
state: overridden
# Using replaced
Expand All @@ -124,7 +124,7 @@
- name: Ethernet1/2
bfd: disable
echo: disable
operation: replaced
state: replaced
"""
Expand Down

0 comments on commit 03b4d8f

Please sign in to comment.