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/games-util/xboxdrv/files/xboxdrv.initd

19 lines
446 B

#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
PIDFILE="/var/run/${SVCNAME}.pid"
start() {
ebegin "Starting xboxdrv"
start-stop-daemon --start --pidfile "${PIDFILE}" --exec /usr/bin/xboxdrv -- \
--daemon --detach --pid-file "${PIDFILE}" ${XBOXDRV_OPTS}
eend $?
}
stop() {
ebegin "Stopping xboxdrv"
start-stop-daemon --stop --pidfile "${PIDFILE}"
eend $?
}