* [lm-sensors] fancontrol doesn't restart on resume from suspend or hibernation (with solution)
@ 2015-08-13 6:15 tarqui
0 siblings, 0 replies; only message in thread
From: tarqui @ 2015-08-13 6:15 UTC (permalink / raw)
To: lm-sensors
hi, i'm using debian stable (now jessie).
i solved the issue in the subject by adding this script
/lib/systemd/system-sleep/fancontrol (of course made executable with
chmod +x)
#!/bin/sh
#
# /lib/systemd/system-sleep/fancontrol
#
# restart fancontrol on resume
case "${1}" in
pre)
# does nothing
;;
post)
/etc/init.d/fancontrol restart
;;
*) exit
;;
esac
--
i hope this will be merged in some next .deb package in repository.
many thanks for this little big utility.
regards.
tarqui
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-08-13 6:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-13 6:15 [lm-sensors] fancontrol doesn't restart on resume from suspend or hibernation (with solution) tarqui
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.