#!/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
