| 12345678910111213141516171819 |
- #!/sbin/openrc-run
- # Copyright 2024-2026 Gentoo Authors
- # Distributed under the terms of the GNU General Public License v2
- description="Cyan Skillfish GPU Governor"
- : "${CYAN_SKILLFISH_CONFIG:=/etc/cyan-skillfish-governor-smu/config.toml}"
- command="/usr/bin/cyan-skillfish-governor-smu"
- command_args="${CYAN_SKILLFISH_CONFIG}"
- command_background=true
- pidfile="/run/${RC_SVCNAME}.pid"
- output_log="/var/log/${RC_SVCNAME}.log"
- error_log="/var/log/${RC_SVCNAME}.log"
- depend() {
- need dbus
- use logger
- }
|