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-misc/spacenavd/files/spnavd

28 lines
580 B

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
depend() {
need localmount
after bootmisc
}
start() {
ebegin "Starting Spacenav system daemon"
start-stop-daemon --start --pidfile /var/run/spnavd.pid --exec /usr/bin/spacenavd
eend $?
}
stop() {
local retval
ebegin "Stopping Spacenav system daemon"
start-stop-daemon --stop --pidfile /var/run/spnavd.pid
retval=$?
eend ${retval}
return ${retval}
}