cyan-skillfish-governor-smu.initd 503 B

12345678910111213141516171819
  1. #!/sbin/openrc-run
  2. # Copyright 2024-2026 Gentoo Authors
  3. # Distributed under the terms of the GNU General Public License v2
  4. description="Cyan Skillfish GPU Governor"
  5. : "${CYAN_SKILLFISH_CONFIG:=/etc/cyan-skillfish-governor-smu/config.toml}"
  6. command="/usr/bin/cyan-skillfish-governor-smu"
  7. command_args="${CYAN_SKILLFISH_CONFIG}"
  8. command_background=true
  9. pidfile="/run/${RC_SVCNAME}.pid"
  10. output_log="/var/log/${RC_SVCNAME}.log"
  11. error_log="/var/log/${RC_SVCNAME}.log"
  12. depend() {
  13. need dbus
  14. use logger
  15. }