aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/turbo_boost.yaml
blob: 2fa704cdb0665e04ab9053e440eadfceaef64169 (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
---
# file: roles/tg_sut/tasks/turbo_boost.yaml

- name: Turbo boost - Install msr-tools
  apt:
    name:
      - 'msr-tools'
    state: 'present'
    cache_valid_time: 3600
    install_recommends: False
  tags: turbo-boost

- name: Turbo boost - Load msr by default
  lineinfile:
    path: '/etc/modules'
    state: 'present'
    line: 'msr'
  tags: turbo-boost

- name: Turbo boost - 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-boost

- name: Turbo boost - Custom startup service hook enable
  service:
    name: 'disable-turbo-boost'
    enabled: yes
  tags: turbo-boost