Ansible: More telemetry 76/25176/2
authorPeter Mikus <pmikus@cisco.com>
Fri, 14 Feb 2020 13:19:31 +0000 (13:19 +0000)
committerPeter Mikus <pmikus@cisco.com>
Fri, 14 Feb 2020 19:51:23 +0000 (19:51 +0000)
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Change-Id: If0c2501d8ae6e019d6873283770c926b0da29095

resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml

index cf0f245..eb97f0b 100644 (file)
@@ -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
     - 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 }}"