Files
ansible/disable-cpu-boost.yaml
2024-06-14 10:38:25 +08:00

17 lines
501 B
YAML

- name: Disable CPU Boost on Linux Servers
hosts: all
become: yes
user: root
tasks:
- name: Gather facts
setup:
filter: ansible_processor*
- name: Disable CPU boost for AMD processors
shell: echo 0 > /sys/devices/system/cpu/cpufreq/boost
when: "'AuthenticAMD' in ansible_processor[1]"
- name: Disable CPU boost for Intel processors
shell: echo 1 > /sys/devices/system/cpu/intel_pstate/no_turbo
when: "'GenuineIntel' in ansible_processor[1]"