2023-12-07 02:14:38 +00:00
|
|
|
- name: Install packages
|
|
|
|
package:
|
|
|
|
name:
|
|
|
|
- powertop
|
|
|
|
state: present
|
2023-12-19 01:08:06 +00:00
|
|
|
|
2023-12-19 13:51:25 +00:00
|
|
|
- name: Favor energy efficiency for hardware p-states
|
2023-12-19 01:08:06 +00:00
|
|
|
when: hwpstate is defined and hwpstate and cores is defined
|
|
|
|
template:
|
|
|
|
src: "templates/{{ item.src }}.j2"
|
|
|
|
dest: "{{ item.dest }}"
|
2023-12-19 13:51:25 +00:00
|
|
|
mode: 0644
|
2023-12-19 01:08:06 +00:00
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
loop:
|
|
|
|
- src: energy_performance_preference.conf
|
|
|
|
dest: /etc/tmpfiles.d/energy_performance_preference.conf
|
|
|
|
|
2023-12-19 13:51:25 +00:00
|
|
|
- name: Install tmpfiles.d configuration
|
|
|
|
when: hwpstate is defined and hwpstate and cores is defined
|
|
|
|
copy:
|
|
|
|
src: "files/{{ item }}_tmpfiles.conf"
|
|
|
|
dest: "/etc/tmpfiles.d/{{ item }}.conf"
|
|
|
|
mode: 0644
|
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
loop:
|
|
|
|
- platform_profile
|
|
|
|
|
2023-12-19 01:08:06 +00:00
|
|
|
- name: Install scripts
|
|
|
|
when: hwpstate is defined and hwpstate
|
|
|
|
copy:
|
|
|
|
src: "files/{{ item.src }}"
|
|
|
|
dest: "{{ item.dest }}"
|
|
|
|
mode: 0755
|
|
|
|
owner: root
|
|
|
|
group: wheel
|
|
|
|
loop:
|
|
|
|
- src: cpu_set_perf_perc_linux_amd
|
|
|
|
dest: /usr/local/bin/cpu_set_perf_perc
|