From dd5cd790b4fe977c9ba5fd9fe73d173a01065594 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Fri, 14 Feb 2020 13:19:31 +0000 Subject: [PATCH] Ansible: More telemetry Signed-off-by: Peter Mikus Change-Id: If0c2501d8ae6e019d6873283770c926b0da29095 --- .../testbed-setup/ansible/roles/calibration/tasks/main.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml index cf0f2450bb..eb97f0beb1 100644 --- a/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml +++ b/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml @@ -21,6 +21,7 @@ shell: "/opt/spectre-meltdown-checker.sh --no-color || true" async: 60 poll: 0 + ignore_errors: yes register: spectre_meltdown_async tags: - check-spectre-meltdown @@ -31,6 +32,17 @@ - check-machine-specific - check-jitter-tool +- name: Calibration - Get BIOS info + shell: "dmidecode -t bios" + ignore_errors: yes + register: dmidecode_bios + tags: + - check-bios + +- debug: var=dmidecode_bios.stdout_lines + tags: + - check-bios + - name: Check sync status async_status: jid: "{{ spectre_meltdown_async.ansible_job_id }}" -- 2.16.6