You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/lm-sensors/files/lm_sensors.initd

22 lines
331 B

#!/sbin/openrc-run
# Copyright 1999-2019 Gentoo Authors
# 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;
}