summaryrefslogtreecommitdiff
blob: e0fc046a7ff6ccdf62e238e5198c6bf30e795638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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 $?
}