mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-27 21:08:34 +02:00
10 lines
301 B
Bash
10 lines
301 B
Bash
#!/bin/sh
|
|
|
|
# Fixed GID/UID values as this users was previously included in the
|
|
# default /etc/passwd as shipped by main/alpine-baselayout.
|
|
|
|
addgroup -g 70 -S postgres 2>/dev/null
|
|
adduser -u 70 -S -D -H -h /var/lib/postgresql -g "PostgreSQL user" \
|
|
-s /bin/sh -G postgres postgres 2>/dev/null
|
|
|
|
exit 0
|