-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ini.example
More file actions
27 lines (20 loc) · 897 Bytes
/
config.ini.example
File metadata and controls
27 lines (20 loc) · 897 Bytes
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
[Settings]
# Path to the ipmitool executable.
# Default is /usr/bin/ipmitool if this is not specified.
ipmitool_path = /usr/bin/ipmitool
# IPMI interface. 'open' is for local access, 'lanplus' for network.
# 'open' is recommended for security and simplicity.
interface = open
# How often to check the temperature and adjust fans, in seconds.
check_interval = 10
[DynamicControl]
# This section defines the temperature thresholds and corresponding fan speeds.
# The script will choose a speed based on the CPU package temperature.
# The temperature (in Celsius) below which fans will be set to low_speed.
low_temp = 50
# The temperature (in Celsius) above which fans will be set to high_speed.
high_temp = 65
# Fan speed (in percent, 0-100) when the temperature is below low_temp.
low_speed = 30
# Fan speed (in percent, 0-100) when the temperature is at or above high_temp.
high_speed = 75