You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-accessibility/espeakup/files/espeakup.rc

29 lines
485 B

#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
after modules
use alsasound pulseaudio
}
start() {
ebegin "Starting espeakup"
start-stop-daemon --start --exec /usr/bin/espeakup \
-- ${ESPEAKUP_OPTS}
eend $?
}
stop() {
ebegin "Stopping espeakup"
start-stop-daemon --stop --pidfile /var/run/espeakup.pid
eend $?
}
restart() {
svc_stop || exit 1
sleep 2
svc_start || exit 1
}