Ansible: More telemetry
[csit.git] / 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 }}"