mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix nxos_snapshot compare (#41386)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -356,7 +356,9 @@ def main():
|
||||
snapshot1 = module.params['snapshot1']
|
||||
snapshot2 = module.params['snapshot2']
|
||||
compare_option = module.params['compare_option']
|
||||
command = 'show snapshot compare {0} {1} {2}'.format(snapshot1, snapshot2, compare_option)
|
||||
command = 'show snapshot compare {0} {1}'.format(snapshot1, snapshot2)
|
||||
if compare_option:
|
||||
command += ' {0}'.format(compare_option)
|
||||
content = execute_show_command(command, module)[0]
|
||||
if content:
|
||||
write_on_file(content, comparison_results_file, module)
|
||||
|
||||
Reference in New Issue
Block a user