af43b359bc
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/lm_sensors#e7371e4a9ed1d14d21826fe7e6f5307ca8e3cf97
9 lines
229 B
Bash
Executable File
9 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# -ne 0 ]; then
|
|
/usr/sbin/modprobe -abr "$@"
|
|
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
|