blob: 4efc6c9640408e0bf36b020e8d3398f46cc4cb7f [file] [log] [blame]
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command="/usr/bin/sensors"
depend() {
need localmount
after modules-load
}
start() {
ebegin "Initializing sensors"
${command} --set >/dev/null 2>&1
eend $?
}
stop() {
# Nothing to stop
return 0;
}