blob: f2f52c2f64cfe4c54b3cf808c09e8b01f88bd68b (
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
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/eflite/files/eflite.rc,v 1.1 2004/03/22 07:37:06 eradicator Exp $
depend() {
need alsasound
}
start() {
ebegin "Starting eflite"
start-stop-daemon --start --exec /usr/bin/eflite --background \
--quiet --pidfile /var/run/eflite.pid --make-pidfile -- -D
SOCKET=`egrep '^sockname=' /etc/es.conf | sed 's/^sockname=//'`
[ ! -S ${SOCKET} ] && SOCKET=/tmp/es.socket
chown root.speech ${SOCKET}
chmod 666 ${SOCKET}
eend $?
}
stop() {
ebegin "Stopping eflite"
start-stop-daemon --stop --quiet --pidfile /var/run/eflite.pid
eend $?
}
|