13 lines
361 B
YAML
13 lines
361 B
YAML
- name: set fan and thermal monitoring control
|
|
become: true
|
|
command: smbios-thermal-ctl --set-thermal-mode quiet
|
|
|
|
- name: provision powertop systemd service
|
|
become: true
|
|
template:
|
|
src: 'templates/laptop/powertop.service.j2'
|
|
dest: '/etc/systemd/system/powertop.service'
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart powertop
|