ansible-scaphandre/tasks/check_rapl.yml
2024-03-01 11:01:15 +01:00

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