Commit aa022864 authored by Thomas Gambier's avatar Thomas Gambier

playbook: blacklist mei and mei_me modules

those 2 modules can make a system crash at startup. It is true for
Supermicro motherboards and winterfell motherboards.

See https://www.thomas-krenn.com/en/wiki/Resolve_mei:_Init_hw_failure_or_mei:_initialization_failed
parent 6d152067
......@@ -62,3 +62,17 @@
regexp: '^signature-certificate-list =$[^.*$]+^\s+QUUGLQ==\s^.*END\sCERTIFICATE-----$'
replace: 'signature-certificate-list ='
when: slapos_cfg.stat.exists == True
- name: Prevent mei_me module from being loaded
lineinfile:
dest: /etc/modprobe.d/blacklist.conf
line: "blacklist mei_me"
state: present
create: yes
- name: Prevent mei module from being loaded
lineinfile:
dest: /etc/modprobe.d/blacklist.conf
line: "blacklist mei"
state: present
create: yes
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment