summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKedar K <4506537+kedarX@users.noreply.github.com>2017-09-15 23:51:34 +0530
committerToshio Kuratomi <a.badger@gmail.com>2017-09-15 12:06:03 -0700
commite22a96c00ac5ceaabecf589609a95055614a37dd (patch)
treeca2afa5aac9216f7247f974bce2950aca8c13418
parent5d8bc210bf75e24a57910f8d10b68745a09c3a67 (diff)
downloadansible-e22a96c00ac5ceaabecf589609a95055614a37dd.tar.gz
Fixes nxos_pim_rp_address module idempotence (#29620)
* Fixes nxos_pim_rp_address module idempotence * * Adds a note in header comment to indicate no support for absent state (cherry picked from commit ff84fc969c03575a4b26dbbb2011f8c106915d7e)
-rw-r--r--lib/ansible/modules/network/nxos/nxos_pim_rp_address.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/ansible/modules/network/nxos/nxos_pim_rp_address.py b/lib/ansible/modules/network/nxos/nxos_pim_rp_address.py
index d688f1753f..dba519c02d 100644
--- a/lib/ansible/modules/network/nxos/nxos_pim_rp_address.py
+++ b/lib/ansible/modules/network/nxos/nxos_pim_rp_address.py
@@ -33,7 +33,7 @@ description:
author: Gabriele Gerbino (@GGabriele)
notes:
- Tested against NXOSv 7.3.(0)D1(1) on VIRL
- - C(state=absent) remove the whole rp-address configuration, if existing.
+ - C(state=absent) is currently not supported on all platforms.
options:
rp_address:
description:
@@ -102,12 +102,12 @@ def get_existing(module, args):
existing['bidir'] = existing.get('bidir') or 'bidir' in line
if len(values) > 2:
- value = values[1]
- if values[2] == 'route-map':
+ value = values[2]
+ if values[1] == 'route-map':
existing['route_map'] = value
- elif values[2] == 'prefix-list':
+ elif values[1] == 'prefix-list':
existing['prefix_list'] = value
- elif values[2] == 'group-list':
+ elif values[1] == 'group-list':
existing['group_list'] = value
return existing