mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S rethinkdb 2>/dev/null
|
|
adduser -S -D -h /var/lib/rethinkdb -s /sbin/nologin -G rethinkdb \
|
|
-g rethinkdb rethinkdb 2>/dev/null
|
|
|
|
exit 0
|