enabled check mode on nxos bgp modules (#57360)

* enabled check mode on nxos bgp modules

* fixed indentation

* spaces instead of tabs
pull/62818/head
Jacob Snapp 5 years ago committed by Trishna Guha
parent 82dedec011
commit 79ab8cb48d

@ -649,6 +649,7 @@ def main():
if candidate:
candidate = candidate.items_text()
if not module.check_mode:
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate

@ -762,6 +762,7 @@ def main():
if candidate:
candidate = candidate.items_text()
if not module.check_mode:
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate

@ -471,6 +471,7 @@ def main():
if candidate:
candidate = candidate.items_text()
if not module.check_mode:
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate

@ -677,6 +677,7 @@ def main():
if candidate:
candidate = candidate.items_text()
if not module.check_mode:
load_config(module, candidate)
result['changed'] = True
result['commands'] = candidate

Loading…
Cancel
Save