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/eflite/files/eflite.rc

29 lines
645 B

#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
use alsasound
use modules
use hotplug
}
start() {
ebegin "Starting eflite"
start-stop-daemon --start --exec /usr/bin/eflite --background \
--quiet --pidfile /var/run/eflite.pid --make-pidfile -- -D || eend 1
SOCKET=`egrep '^sockname=' /etc/eflite/es.conf | sed 's/^sockname=//'`
[ ! -S ${SOCKET} ] && SOCKET=/tmp/es.socket
chown root:speech ${SOCKET}
chmod 660 ${SOCKET}
eend $?
}
stop() {
ebegin "Stopping eflite"
start-stop-daemon --stop --quiet --pidfile /var/run/eflite.pid
eend $?
}