9 lines
228 B
Plaintext
9 lines
228 B
Plaintext
|
#!/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
|