blob: bc9c2c84aca3878f7d5fd4706ef36e8542744328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speechd-up/files/speechd-up.rc,v 1.3 2004/10/30 00:37:21 eradicator Exp $
depend() {
use eflite festival
need speech-dispatcher
}
start() {
ebegin "Starting speechd-up"
start-stop-daemon --start --quiet --background --exec /usr/bin/speechd_up -- -d
eend $?
}
stop() {
ebegin "Stopping speechd-up"
start-stop-daemon --stop --quiet --pidfile /var/run/speechd-up.pid
eend $?
}
|