Files
alpine-packages/packaging/alpine/local/greptimedb/greptimedb.pre-install
Joachim Schlöffel 11ef6456af
All checks were successful
Build Alpine Packages / build-and-publish (push) Successful in 35m5s
Add GreptimeDB Alpine service packaging
2026-06-09 09:54:39 +02:00

8 lines
165 B
Bash
Executable File

#!/bin/sh
addgroup -S greptimedb 2>/dev/null
adduser -S -D -H -h /var/lib/greptimedb -s /sbin/nologin \
-G greptimedb -g greptimedb greptimedb 2>/dev/null
exit 0