blob: 9faa9d77b5fd7e27b3e8dbc00b0fdc368772f68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/evkeyd/files/evkeyd.rc,v 1.1.1.1 2005/11/30 09:56:07 chriswhite Exp $
depend() {
need localmount
}
start() {
ebegin "Starting evkeysd"
start-stop-daemon --start --quiet --exec /usr/sbin/evkeyd
eend $?
}
stop() {
ebegin "Stopping evkeysd"
start-stop-daemon --stop --quiet --pidfile /var/run/evkeyd.pid
eend $?
}
|