1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

save_snapshot_locally nxos_snapshot (#40227)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2018-05-16 14:59:23 +05:30 committed by GitHub
parent 86c945a628
commit 979f1e5ed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -372,7 +372,7 @@ def main():
result['commands'] = action_results result['commands'] = action_results
result['changed'] = True result['changed'] = True
if action == 'create' and module.params['path']: if action == 'create' and module.params['path'] and module.params['save_snapshot_locally']:
command = 'show snapshot | include {}'.format(module.params['snapshot_name']) command = 'show snapshot | include {}'.format(module.params['snapshot_name'])
content = execute_show_command(command, module)[0] content = execute_show_command(command, module)[0]
if content: if content:

View file

@ -13,6 +13,7 @@
action: create action: create
snapshot_name: test_snapshot1 snapshot_name: test_snapshot1
description: Ansible description: Ansible
save_snapshot_locally: true
provider: "{{ connection }}" provider: "{{ connection }}"
- name: create another snapshot - name: create another snapshot
@ -24,6 +25,7 @@
show_command: show ip interface brief show_command: show ip interface brief
row_id: ROW_intf row_id: ROW_intf
element_key1: intf-name element_key1: intf-name
save_snapshot_locally: true
provider: "{{ connection }}" provider: "{{ connection }}"
- name: compare snapshots - name: compare snapshots