summaryrefslogtreecommitdiff
blob: cf5a520d333f1d6976f267a79985dabe4e79f80a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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/festival/files/festival.rc,v 1.2 2004/07/14 21:06:11 agriffis Exp $

depend() {
	need net
	use alsasound esound
}

start() {
	ebegin "Starting festival"
	start-stop-daemon --start --quiet --background --make-pidfile --pidfile /var/run/festival.pid \
		--exec /usr/bin/festival -- --server -b /etc/festival/server.scm
	eend $?
}

stop() {
	ebegin "Stopping festival"
	start-stop-daemon --stop --quiet --pidfile /var/run/festival.pid
	eend $?
}