mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 14:42:01 +01:00
https://github.com/heftig/rtkit D-Bus system service that enables real time scheduling on request
20 lines
381 B
Plaintext
20 lines
381 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
depend() {
|
|
need dbus
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting rtkit"
|
|
start-stop-daemon --start --quiet --exec /usr/libexec/rtkit-daemon \
|
|
--background --pidfile /var/run/rtkit.pid --make-pidfile \
|
|
-- ${RTKIT_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping rtkit"
|
|
start-stop-daemon --stop --quiet --pidfile /var/run/rtkit.pid --exec /usr/libexec/rtkit-daemon
|
|
eend $?
|
|
}
|