added startup hardware monitor

This commit is contained in:
mvoelkel 2015-09-05 19:13:17 +02:00
parent b22b47c0b0
commit 89794aedb2
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/bin/sh
case "$1" in
start)
modprobe octonet
lua /var/monitor/fancontrol.lua
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac