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/sys-apps/razercfg/files/razerd.init.d-r2

26 lines
447 B

#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
use logger
}
PIDFILE=/run/razerd/razerd.pid
start() {
ebegin "Starting razerd"
start-stop-daemon --start \
--pidfile ${PIDFILE} \
--exec /usr/bin/razerd \
-- --background --pidfile ${PIDFILE}
eend $?
}
stop() {
ebegin "Stopping razerd"
start-stop-daemon --stop --pidfile ${PIDFILE}
eend $?
}