#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { use eflite festival need speech-dispatcher } start() { ebegin "Starting speechd-up" start-stop-daemon --start --quiet --background --exec /usr/bin/nice -- -n -5 /usr/bin/speechd_up -d eend $? } stop() { ebegin "Stopping speechd-up" start-stop-daemon --stop --quiet --pidfile /var/run/speechd-up.pid eend $? }