blob: 17be80064ae347afb80ad83bd2c7e2a11b7110e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
# file: roles/calibration/tasks/main.yaml
- name: Ubuntu specific
import_tasks: ubuntu.yaml
when: ansible_distribution|lower == 'ubuntu'
- name: Run Spectre Meltdown checker
raw: 'spectre-meltdown-checker --no-color'
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'
|