working v6
This commit is contained in:
commit
77780ff216
11 changed files with 329 additions and 0 deletions
18
tasks/FreeBSD-shortcuts.yml
Normal file
18
tasks/FreeBSD-shortcuts.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
- name: disable EIST and throttle
|
||||
lineinfile:
|
||||
path: "/boot/loader.conf"
|
||||
regexp: "^{{ item.name }}"
|
||||
line: "{{ item.name }}={{ item.val }}"
|
||||
become: true
|
||||
loop: "{{ sysctl_setting }}"
|
||||
vars:
|
||||
sysctl_setting:
|
||||
- name: "acpi_ibm_load"
|
||||
val: YES
|
||||
- name: "hint.acpi_throttle.0.disabled"
|
||||
val: 1
|
||||
|
||||
tags:
|
||||
- configuration
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue