Remove timeout from nxos tests (#65470)
This fixes the following: Unsupported parameters for (nxos_rollback) module: timeout unsupported Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
parent
95c85b395c
commit
b975fd407d
3 changed files with 0 additions and 5 deletions
|
@ -17,7 +17,6 @@
|
|||
- name: save config
|
||||
nxos_config:
|
||||
save_when: always
|
||||
timeout: 300
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
|
||||
|
@ -28,7 +27,6 @@
|
|||
- name: save should always run
|
||||
nxos_config:
|
||||
save_when: always
|
||||
timeout: 300
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
|
||||
|
|
|
@ -200,6 +200,5 @@
|
|||
feature: lacp
|
||||
provider: "{{ connection }}"
|
||||
state: disabled
|
||||
timeout: 60
|
||||
|
||||
- debug: msg="END connection={{ ansible_connection }} nxos_linkagg sanity test"
|
||||
|
|
|
@ -16,13 +16,11 @@
|
|||
nxos_rollback:
|
||||
checkpoint_file: backup.cfg
|
||||
provider: "{{ connection }}"
|
||||
timeout: 300
|
||||
|
||||
- name: rollback to the previously created checkpoint file
|
||||
nxos_rollback:
|
||||
rollback_to: backup.cfg
|
||||
provider: "{{ connection }}"
|
||||
timeout: 300
|
||||
|
||||
- name: cleanup checkpoint file
|
||||
nxos_config: *delete
|
||||
|
|
Loading…
Reference in a new issue