blob: 237f232379ef5b2efc6a3223f583ba7e62a5884d (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
echo 'The zenstats kernel module will be available on reboot. To load it now, run "modprobe -r k10temp && modprobe zenstats" as root'
echo 'If you're coming from zenpower, you must reboot for zenstats to be available'
}
post_remove() {
echo 'The zenstats kernel module will be removed on reboot. To remove it now, run "modprobe -r zenstats && modprobe k10temp" as root'
}
|