blob: cff71e9ce3260c3a888c7dcb457f9e87423020bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
---
# file: roles/performance_tuning/tasks/turbo_boost.yaml
- name: Inst - Update Package Cache (APT)
apt:
update_cache: true
cache_valid_time: 3600
when:
- ansible_distribution|lower == 'ubuntu'
tags:
- turbo-inst-prerequisites
- name: Inst - msr-tools
package:
name:
- "msr-tools"
state: latest
tags:
- turbo-inst-prerequisites
- name: Conf - Load msr By Default
lineinfile:
path: "/etc/modules"
state: "present"
line: "msr"
tags:
- turbo-conf-msr
- name: Conf - Custom Startup Service Hook
copy:
src: "files/disable-turbo-boost.service"
dest: "/etc/systemd/system/disable-turbo-boost.service"
owner: "root"
group: "root"
mode: 0644
tags:
- turbo-conf-msr
- name: Conf - Custom Startup Service Hook Enable
service:
name: "disable-turbo-boost"
enabled: true
tags:
- turbo-conf-msr
|