mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-19 04:31:20 +02:00
5 lines
128 B
Bash
Executable File
5 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
|