mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
28 lines
580 B
Plaintext
28 lines
580 B
Plaintext
#!/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}
|
|
}
|