summaryrefslogtreecommitdiff
blob: 5bd77921c6616a382fe3c024bcc7b6f16a96584a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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
}