aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/lm_sensors/files/sensord-4-init.d')
-rw-r--r--sys-apps/lm_sensors/files/sensord-4-init.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/sys-apps/lm_sensors/files/sensord-4-init.d b/sys-apps/lm_sensors/files/sensord-4-init.d
deleted file mode 100644
index 87f7e7ab..00000000
--- a/sys-apps/lm_sensors/files/sensord-4-init.d
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-CONFIG=/etc/sensors3.conf
-
-depend() {
- need localmount
- use logger lm_sensors
-}
-
-pidfile=/var/run/sensord.pid
-command=/usr/sbin/sensord
-command_args="--config-file ${CONFIG} ${SENSORD_OPTIONS} --pid-file ${pidfile}"
-
-start_pre() {
- if [ ! -f ${CONFIG} ]; then
- eerror "Configuration file ${CONFIG} not found"
- return 1
- fi
-}