3d7165a751
- Introducing fancontrol service file (#988922) - Replacing hardcoded systemd unit path with _unitdir macro
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# -ne 0 ]; then
|
|
/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
|