mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-16 10:06:24 +02:00
https://github.com/ggerganov/whisper.cpp Port of OpenAI's Whisper model in C/C++ Co-Authored-By: Marian Buschsieweke <marian.buschsieweke@posteo.net>
6 lines
184 B
Bash
6 lines
184 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S whisper-server 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/whisper-server -s /sbin/nologin -G whisper-server \
|
|
-g "whisper-server user" whisper-server 2>/dev/null
|