Fix nxos_ospf_vrf module auto-cost idempotency and module check mode (#47190)

* fixing idempotency and check mode

* modified to avoid repetitive code
pull/46500/head^2
Dan 6 years ago committed by Trishna Guha
parent 6629f153d2
commit dcb35c4270

@ -204,7 +204,7 @@ def get_existing(module, args):
elif 'auto' in line:
cost = re.search(r'auto-cost reference-bandwidth (\d+) (\S+)', line).group(1)
if 'Gbps' in line:
cost *= 1000
cost = int(cost) * 1000
existing['auto_cost'] = str(cost)
elif 'timers throttle lsa' in line:
tmp = re.search(r'timers throttle lsa (\S+) (\S+) (\S+)', line)
@ -377,7 +377,7 @@ def main():
warnings = list()
check_args(module, warnings)
result = dict(changed=False, warnings=warnings)
result = dict(changed=False, commands=[], warnings=warnings)
state = module.params['state']
args = PARAM_TO_COMMAND_KEYMAP.keys()
@ -407,12 +407,10 @@ def main():
if candidate:
candidate = candidate.items_text()
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate
else:
result['commands'] = []
if not module.check_mode:
load_config(module, candidate)
result['changed'] = True
module.exit_json(**result)

Loading…
Cancel
Save