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