mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 07:16:46 +02:00
Split fancontrol (pwmconfig) into a subpackage, this then removes bash as a dependancy of the lm-sensors package. Also create lm-sensors-fancontrol-openrc subpackage. Add postupgrade message to lm-sensors package regarding fancontrol moving.
12 lines
265 B
Bash
12 lines
265 B
Bash
#!/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
|