lm_sensors/lm_sensors-modprobe
Jaromir Capik 3de330643f - Enhancing the sensord service wrapper (#863986)
- UsrMove and libexec path tunings
2014-01-10 14:46:42 +01:00

9 lines
226 B
Bash
Executable File

#!/bin/sh
if [ $# -ne 0 ]; then
/usr/sbin/modprobe -ab $@
else
echo "No sensors with loadable kernel modules configured."
echo "Please, run 'sensors-detect' as root in order to search for available sensors."
exit 1
fi