From 506e2da0ff0088aa5287850a238289b82a98b0f7 Mon Sep 17 00:00:00 2001 From: qoreQyaS Date: Thu, 2 Jan 2020 18:27:50 +0100 Subject: [PATCH] wording in examples changed ios to eos (#66131) wrong module was used in examples: should be eos_vlans not ios_vlans --- lib/ansible/modules/network/eos/eos_vlans.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/network/eos/eos_vlans.py b/lib/ansible/modules/network/eos/eos_vlans.py index b00137ddd1d..2f0bdc72f32 100644 --- a/lib/ansible/modules/network/eos/eos_vlans.py +++ b/lib/ansible/modules/network/eos/eos_vlans.py @@ -93,7 +93,7 @@ EXAMPLES = """ # name twenty - name: Delete attributes of the given VLANs. - ios_vlans: + eos_vlans: config: - vlan_id: 20 state: deleted @@ -119,7 +119,7 @@ EXAMPLES = """ # name twenty - name: Merge given VLAN attributes with device configuration - ios_vlans: + eos_vlans: config: - vlan_id: 20 state: suspend @@ -150,7 +150,7 @@ EXAMPLES = """ # name twenty - name: Override device configuration of all VLANs with provided configuration - ios_vlans: + eos_vlans: config: - vlan_id: 20 state: suspend @@ -177,7 +177,7 @@ EXAMPLES = """ # name twenty - name: Replace all attributes of specified VLANs with provided configuration - ios_vlans: + eos_vlans: config: - vlan_id: 20 state: suspend