10 lines
279 B
YAML
10 lines
279 B
YAML
|
---
|
||
|
# This file checks for the presence of the intel_rapl_common kernel module, and tries to install it if
|
||
|
# it's not present on the host machine.
|
||
|
|
||
|
- name: Check for RAPL module
|
||
|
community.general.modprobe:
|
||
|
name: intel_rapl_common
|
||
|
state: present
|
||
|
persistent: present
|