blob: 76c72099994a854a02da773f711a9fbb9fb8b362 (
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
|
post_install() {
cat << _EOF
Simpfand can only work if you have enabled the
fan control option in the thinkpad_acpi module.
Create a file in /etc/modprobe.d/ and append:
options thinkpad_acpi fan_control=1
An example config file is located in:
/usr/share/doc/simpfand/simpfand.conf
_EOF
}
post_upgrade() {
cat << _EOF
Simpfand expects a config file in:
/etc/simpfand.conf
An _updated_ example config file is located in:
/usr/share/doc/simpfand/simpfand.conf
_EOF
}
|