mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 20:55:19 +03:00
4 lines
128 B
Bash
Executable file
4 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
addgroup -S couchdb &>/dev/null
|
|
adduser -h /var/run/couchdb -s /bin/false -G couchdb -S -D couchdb &>/dev/null
|
|
exit 0
|