21 lines
440 B
Plaintext
21 lines
440 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2002 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/synaptics/files/rc.init,v 1.2 2006/12/19 01:07:10 lu_zero Exp $
|
||
|
|
||
|
depend() {
|
||
|
use localmount
|
||
|
}
|
||
|
|
||
|
start() {
|
||
|
ebegin "Starting syndaemon"
|
||
|
/usr/bin/syndaemon ${SYNDAEMON_OPTS}
|
||
|
eend $?
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
ebegin "Stopping syndaemon"
|
||
|
kill `cat /var/run/syndaemon.pid`
|
||
|
eend $?
|
||
|
}
|