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>
pull/65730/head
Paul Belanger 6 years ago committed by GitHub
parent 95c85b395c
commit b975fd407d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,7 +17,6 @@
- name: save config - name: save config
nxos_config: nxos_config:
save_when: always save_when: always
timeout: 300
provider: "{{ connection }}" provider: "{{ connection }}"
register: result register: result
@ -28,7 +27,6 @@
- name: save should always run - name: save should always run
nxos_config: nxos_config:
save_when: always save_when: always
timeout: 300
provider: "{{ connection }}" provider: "{{ connection }}"
register: result register: result

@ -200,6 +200,5 @@
feature: lacp feature: lacp
provider: "{{ connection }}" provider: "{{ connection }}"
state: disabled state: disabled
timeout: 60
- debug: msg="END connection={{ ansible_connection }} nxos_linkagg sanity test" - debug: msg="END connection={{ ansible_connection }} nxos_linkagg sanity test"

@ -16,13 +16,11 @@
nxos_rollback: nxos_rollback:
checkpoint_file: backup.cfg checkpoint_file: backup.cfg
provider: "{{ connection }}" provider: "{{ connection }}"
timeout: 300
- name: rollback to the previously created checkpoint file - name: rollback to the previously created checkpoint file
nxos_rollback: nxos_rollback:
rollback_to: backup.cfg rollback_to: backup.cfg
provider: "{{ connection }}" provider: "{{ connection }}"
timeout: 300
- name: cleanup checkpoint file - name: cleanup checkpoint file
nxos_config: *delete nxos_config: *delete

Loading…
Cancel
Save