summaryrefslogtreecommitdiff
path: root/app-misc/actkbd/files/actkbd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/actkbd/files/actkbd.initd')
-rw-r--r--app-misc/actkbd/files/actkbd.initd31
1 files changed, 0 insertions, 31 deletions
diff --git a/app-misc/actkbd/files/actkbd.initd b/app-misc/actkbd/files/actkbd.initd
deleted file mode 100644
index bb03870adb2f..000000000000
--- a/app-misc/actkbd/files/actkbd.initd
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-checkconfig() {
- if [ ! -f ${CONFIG} ] ; then
- eerror "Config file \"${CONFIG}\" does not exist. Create it prior launching the daemon."
- return 1
- fi
- if [ ! -c ${EVENT_DEVICE} ] ; then
- eerror "Device \"${EVENT_DEVICE}\" is not valid pointer to input provider."
- return 1
- fi
-}
-
-depend() {
- before acpid
-}
-
-start() {
- checkconfig || return 1
- ebegin "Starting actkbd"
- start-stop-daemon --start --quiet --pidfile ${PIDFILE} --exec /usr/bin/actkbd -- -c "${CONFIG}" -D -q -x -l -p "${PIDFILE}" -d "${EVENT_DEVICE}"
- eend $?
-}
-
-stop() {
- ebegin "Stopping actkbd"
- start-stop-daemon --stop --quiet --pidfile ${PIDFILE} --exec /usr/bin/actkbd
- eend $?
-}