mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 22:52:59 -04:00
Closes: https://bugs.gentoo.org/974649 Signed-off-by: Kevin Martin <kevinmbecause@gmail.com>
15 lines
426 B
Plaintext
15 lines
426 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License, v2
|
|
|
|
supervisor=supervise-daemon
|
|
description="Whisper-CPP Service"
|
|
command="/usr/bin/whisper-server"
|
|
command_args="${command_args} -m ${whisper_model}"
|
|
required_files="${whisper_model}"
|
|
|
|
start_pre() {
|
|
checkpath --directory --owner $command_user --mode 0775 \
|
|
/var/log/$RC_SVCNAME
|
|
}
|