blob: 34c987bdcb03c31392a1f02bf35eca76ff4233a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
# file: roles/calibration/tasks/main.yaml
- name: Run Spectre Meltdown checker
raw: 'wget -qO - https://meltdown.ovh | sudo bash -s - --no-color || true'
register: spectre_meltdown_output
tags: run-spectre-meltdown-checker
- debug: var=spectre_meltdown_output.stdout_lines
tags: run-spectre-meltdown-checker
- name: x86 specific
import_tasks: x86_64.yaml
when: ansible_machine == 'x86_64'
|