summaryrefslogtreecommitdiff
blob: 73c8d20e21182439fe04c031a95d5bead575bf0c (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 Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/festival/files/festival.rc,v 1.2 2004/03/13 06:54:35 eradicator 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 $?
}