Files
ceamac-overlay/sys-apps/ryzen-stabilizator/files/ryzen-stabilizator
T
2021-03-09 06:43:27 +02:00

22 lines
384 B
Plaintext

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
command="/usr/bin/ryzen-stabilizator"
depend() {
need localmount
after modules-load
}
start() {
ebegin "Initializing ryzen"
${command} --config=/etc/ryzen-stabilizator/settings.toml >/dev/null 2>&1
eend $?
}
stop() {
# Nothing to stop
return 0;
}