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-process/rtirq/files/rtirq.initd

29 lines
431 B

#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License, v2 or later
command="/usr/bin/rtirq"
extra_commands="status"
depend() {
need localmount
after alsasound logger
}
start() {
ebegin "Starting rtirq"
${command} start
eend ${?}
}
stop() {
ebegin "Stopping rtirq"
${command} stop
eend ${?}
}
status() {
${command} status
}