mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-29 18:32:43 +02:00
The standalone ggml library does not have a matching API and cannot be used to build llama.cpp. It's pointless to package the vendored version separately, since there's no other project which can rely on it. convert_hf_to_gguf requires several missing depends, so is omitted for now.
8 lines
182 B
Bash
8 lines
182 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S llama-server 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/llama-server -s /sbin/nologin -G llama-server \
|
|
-g "llama-server user" llama-server 2>/dev/null
|
|
|
|
exit 0
|