nxos_evpn_vni check_mode (#46612)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/46595/head
Trishna Guha 6 years ago committed by GitHub
parent f731e68bca
commit d69700b236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -275,8 +275,9 @@ def main():
candidate = CustomNetworkConfig(indent=3)
candidate.add(commands, parents=parents)
candidate = candidate.items_text()
load_config(module, candidate)
results['changed'] = True
if not module.check_mode:
load_config(module, candidate)
results['changed'] = True
results['commands'] = candidate
else:
results['commands'] = []

Loading…
Cancel
Save