enabled check mode on nxos bgp modules ()

* enabled check mode on nxos bgp modules

* fixed indentation

* spaces instead of tabs
This commit is contained in:
Jacob Snapp 2019-10-11 06:20:40 +00:00 committed by Trishna Guha
parent 82dedec011
commit 79ab8cb48d
4 changed files with 8 additions and 4 deletions

View file

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

View file

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

View file

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

View file

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