summaryrefslogtreecommitdiff
blob: ab3f5ac057619ec4e89499ac3739329246afd67c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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/brltty/files/brltty.rc,v 1.4 2009/11/01 18:41:06 eva Exp $

depend() {
	if [ -z $svcdir ]; then
		before *
	fi
	after clock
}

start() {
	ebegin "Starting brltty"
	start-stop-daemon --start --exec /bin/brltty -- -P /var/run/brltty.pid -q
	eend $?
}

stop() {
	ebegin "Stopping brltty"
	start-stop-daemon --stop --pidfile /var/run/brltty.pid
	eend $?
}