mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-10 14:44:22 +02:00
rename to lm-sensors to reflect upstream name remove musl-fix-includes.patch. musl is supported upstream change source url to github repository where development moved add provides="lm_sensors" for packages which depends on old name
33 lines
710 B
Bash
33 lines
710 B
Bash
#!/sbin/openrc-run
|
|
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/files/sensord-init.d,v 1.1 2007/05/17 07:31:41 phreak Exp $
|
|
|
|
CONFIG=/etc/sensors3.conf
|
|
|
|
depend() {
|
|
need logger
|
|
use lm_sensors
|
|
}
|
|
|
|
checkconfig() {
|
|
if [ ! -f ${CONFIG} ]; then
|
|
eerror "Configuration file ${CONFIG} not found"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
|
|
ebegin "Starting sensord"
|
|
start-stop-daemon --start --exec /usr/sbin/sensord \
|
|
-- --config-file ${CONFIG} ${SENSORD_OPTIONS}
|
|
eend ${?}
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping sensord"
|
|
start-stop-daemon --stop --pidfile /var/run/sensord.pid
|
|
eend ${?}
|
|
}
|