mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-04 10:38:26 +02:00
13 lines
265 B
Text
13 lines
265 B
Text
|
#!/bin/sh
|
||
|
|
||
|
ver_old=$2
|
||
|
|
||
|
# In 3.6.0-4 fancontrol and pwmconfig moved to the
|
||
|
# lm-sensors-fancontrol subpackage.
|
||
|
|
||
|
if [ "$(apk version -t "$ver_old" '3.6.0-r4')" = '<' ]; then
|
||
|
echo "fancontrol & pwmconfig have moved to the lm-sensors-fancontrol subpackage"
|
||
|
fi
|
||
|
|
||
|
exit 0
|