#!/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 $? }